Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
nghttp2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
nghttp2
Commits
65b59bd7
Commit
65b59bd7
authored
Mar 19, 2016
by
Tatsuhiro Tsujikawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include config.h from tests/*.h
parent
dcae6efa
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
48 additions
and
3 deletions
+48
-3
tests/failmalloc_test.h
tests/failmalloc_test.h
+4
-0
tests/malloc_wrapper.h
tests/malloc_wrapper.h
+4
-0
tests/nghttp2_buf_test.h
tests/nghttp2_buf_test.h
+4
-0
tests/nghttp2_frame_test.h
tests/nghttp2_frame_test.h
+4
-0
tests/nghttp2_hd_test.h
tests/nghttp2_hd_test.h
+4
-0
tests/nghttp2_helper_test.h
tests/nghttp2_helper_test.h
+4
-0
tests/nghttp2_map_test.h
tests/nghttp2_map_test.h
+4
-0
tests/nghttp2_npn_test.c
tests/nghttp2_npn_test.c
+0
-3
tests/nghttp2_npn_test.h
tests/nghttp2_npn_test.h
+4
-0
tests/nghttp2_pq_test.h
tests/nghttp2_pq_test.h
+4
-0
tests/nghttp2_queue_test.h
tests/nghttp2_queue_test.h
+4
-0
tests/nghttp2_session_test.h
tests/nghttp2_session_test.h
+4
-0
tests/nghttp2_stream_test.h
tests/nghttp2_stream_test.h
+4
-0
No files found.
tests/failmalloc_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef FAILMALLOC_TEST_H
#define FAILMALLOC_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_session_send
(
void
);
void
test_nghttp2_session_recv
(
void
);
void
test_nghttp2_frame
(
void
);
...
...
tests/malloc_wrapper.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef MALLOC_WRAPPER_H
#define MALLOC_WRAPPER_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
#include <stdlib.h>
#include "nghttp2_mem.h"
...
...
tests/nghttp2_buf_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef NGHTTP2_BUF_TEST_H
#define NGHTTP2_BUF_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_bufs_add
(
void
);
void
test_nghttp2_bufs_add_stack_buffer_overflow_bug
(
void
);
void
test_nghttp2_bufs_addb
(
void
);
...
...
tests/nghttp2_frame_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef NGHTTP2_FRAME_TEST_H
#define NGHTTP2_FRAME_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_frame_pack_headers
(
void
);
void
test_nghttp2_frame_pack_headers_frame_too_large
(
void
);
void
test_nghttp2_frame_pack_priority
(
void
);
...
...
tests/nghttp2_hd_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef NGHTTP2_HD_TEST_H
#define NGHTTP2_HD_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_hd_deflate
(
void
);
void
test_nghttp2_hd_deflate_same_indexed_repr
(
void
);
void
test_nghttp2_hd_inflate_indexed
(
void
);
...
...
tests/nghttp2_helper_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef NGHTTP2_HELPER_TEST_H
#define NGHTTP2_HELPER_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_adjust_local_window_size
(
void
);
void
test_nghttp2_check_header_name
(
void
);
void
test_nghttp2_check_header_value
(
void
);
...
...
tests/nghttp2_map_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef NGHTTP2_MAP_TEST_H
#define NGHTTP2_MAP_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_map
(
void
);
void
test_nghttp2_map_functional
(
void
);
void
test_nghttp2_map_each_free
(
void
);
...
...
tests/nghttp2_npn_test.c
View file @
65b59bd7
...
...
@@ -22,9 +22,6 @@
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
#include "nghttp2_npn_test.h"
#include <string.h>
...
...
tests/nghttp2_npn_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef NGHTTP2_NPN_TEST_H
#define NGHTTP2_NPN_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_npn
(
void
);
#endif
/* NGHTTP2_NPN_TEST_H */
tests/nghttp2_pq_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef NGHTTP2_PQ_TEST_H
#define NGHTTP2_PQ_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_pq
(
void
);
void
test_nghttp2_pq_update
(
void
);
void
test_nghttp2_pq_remove
(
void
);
...
...
tests/nghttp2_queue_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef NGHTTP2_QUEUE_TEST_H
#define NGHTTP2_QUEUE_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_queue
(
void
);
#endif
/* NGHTTP2_QUEUE_TEST_H */
tests/nghttp2_session_test.h
View file @
65b59bd7
...
...
@@ -25,6 +25,10 @@
#ifndef NGHTTP2_SESSION_TEST_H
#define NGHTTP2_SESSION_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
void
test_nghttp2_session_recv
(
void
);
void
test_nghttp2_session_recv_invalid_stream_id
(
void
);
void
test_nghttp2_session_recv_invalid_frame
(
void
);
...
...
tests/nghttp2_stream_test.h
View file @
65b59bd7
...
...
@@ -25,4 +25,8 @@
#ifndef NGHTTP2_STREAM_TEST_H
#define NGHTTP2_STREAM_TEST_H
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
/* HAVE_CONFIG_H */
#endif
/* NGHTTP2_STREAM_TEST_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment