From 50a501dbe89ec8f9a76540015890dd361f1ec8a1 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Wed, 10 May 2006 19:24:40 +0000 Subject: Merge-in RTEMS port patch by Phil Torre , alpha release. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@433 74dad513-b988-da41-8d7b-12977e46ad98 --- pjlib/src/pjlib-test/test.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'pjlib/src/pjlib-test/test.c') 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 -- cgit v1.2.3