summaryrefslogtreecommitdiff
path: root/pjlib/src/pjlib-test/test.c
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-05-10 19:24:40 +0000
committerBenny Prijono <bennylp@teluu.com>2006-05-10 19:24:40 +0000
commit50a501dbe89ec8f9a76540015890dd361f1ec8a1 (patch)
treea45dac4292320647ed297b35239fccf38eb5885b /pjlib/src/pjlib-test/test.c
parent5f10c756ac9d5f48efe2adbcccf5d54634540d61 (diff)
Merge-in RTEMS port patch by Phil Torre <ptorre@zetron.com>, alpha release.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@433 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/src/pjlib-test/test.c')
-rw-r--r--pjlib/src/pjlib-test/test.c15
1 files changed, 10 insertions, 5 deletions
diff --git a/pjlib/src/pjlib-test/test.c b/pjlib/src/pjlib-test/test.c
index 97ba2991..01eeb3c6 100644
--- a/pjlib/src/pjlib-test/test.c
+++ b/pjlib/src/pjlib-test/test.c
@@ -40,6 +40,11 @@ int param_echo_port = ECHO_SERVER_START_PORT;
int param_log_decor = PJ_LOG_HAS_NEWLINE | PJ_LOG_HAS_TIME |
PJ_LOG_HAS_MICRO_SEC;
+int null_func()
+{
+ return 0;
+}
+
int test_inner(void)
{
pj_caching_pool caching_pool;
@@ -58,17 +63,13 @@ int test_inner(void)
return rc;
}
- pj_dump_config();
+ //pj_dump_config();
pj_caching_pool_init( &caching_pool, &pj_pool_factory_default_policy, 0 );
#if INCLUDE_ERRNO_TEST
DO_TEST( errno_test() );
#endif
-#if INCLUDE_TIMESTAMP_TEST
- DO_TEST( timestamp_test() );
-#endif
-
#if INCLUDE_EXCEPTION_TEST
DO_TEST( exception_test() );
#endif
@@ -101,6 +102,10 @@ int test_inner(void)
DO_TEST( rbtree_test() );
#endif
+#if INCLUDE_TIMESTAMP_TEST
+ DO_TEST( timestamp_test() );
+#endif
+
#if INCLUDE_ATOMIC_TEST
DO_TEST( atomic_test() );
#endif