Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
ortp
Merge requests
!111
Transfer old extension header and transfer tests into new framework
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Mickaël Turnel
requested to merge
feature/add-tests-to-framework
into
master
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
0
0
Compare
version 3
version 4
96c759c7
2 years ago
version 3
8e1efa7d
2 years ago
version 2
2e3a7c7b
2 years ago
version 1
7dcdfed8
2 years ago
master (base)
and
version 4
latest version
9ab1aa8c
1 commit,
2 years ago
version 4
96c759c7
1 commit,
2 years ago
version 3
8e1efa7d
1 commit,
2 years ago
version 2
2e3a7c7b
1 commit,
2 years ago
version 1
7dcdfed8
1 commit,
2 years ago
Show latest version
2 files
+
11
−
2
Expand all files
Preferences
Preferences
File browser
List view
Tree view
Compare changes
Inline
Side-by-side
Show whitespace changes
Show one file at a time
Search (e.g. *.vue) (Ctrl+P)
tester/ortp_tester.h
+
10
−
1
Options
View file @ 96c759c7
Edit in single-file editor
Open in Web IDE
Show full file
@@ -26,6 +26,10 @@
#include
"ortp-config.h"
#endif
#ifdef __cplusplus
extern
"C"
{
#endif
extern
test_suite_t
extension_header_test_suite
;
extern
test_suite_t
fec_test_suite
;
extern
test_suite_t
rtp_test_suite
;
@@ -36,4 +40,9 @@ extern test_suite_t rtp_test_suite;
void
ortp_tester_init
(
void
(
*
ftester_printf
)(
int
level
,
const
char
*
fmt
,
va_list
args
));
void
ortp_tester_uninit
(
void
);
#endif
\ No newline at end of file
#ifdef __cplusplus
}
#endif
#endif
CMakeLists.txt
+
1
−
1
Options
View file @ 96c759c7
Edit in single-file editor
Open in Web IDE
Show full file
@@ -179,7 +179,7 @@ set(EXPORT_TARGET_NAME ortp)
add_subdirectory
(
include
)
add_subdirectory
(
src
)
if
(
ENABLE_UNIT_TESTS
)
if
(
ENABLE_UNIT_TESTS
AND NOT WIN32
)
add_subdirectory
(
tester
)
endif
()
Menu
Explore
Projects
Groups
Topics
Snippets