Changeset 1895 for pjproject/trunk/pjmedia/src/test/test.c
- Timestamp:
- Mar 26, 2008 4:18:17 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/test/test.c
r974 r1895 36 36 void app_perror(pj_status_t status, const char *msg) 37 37 { 38 char errbuf[PJ MEDIA_ERR_MSG_SIZE];38 char errbuf[PJ_ERR_MSG_SIZE]; 39 39 40 40 pjmedia_strerror(status, errbuf, sizeof(errbuf)); … … 45 45 int test_main(void) 46 46 { 47 int rc ;47 int rc = 0; 48 48 pj_caching_pool caching_pool; 49 49 … … 55 55 mem = &caching_pool.factory; 56 56 57 DO_TEST(sdp_neg_test());57 //DO_TEST(sdp_neg_test()); 58 58 //sdp_test (&caching_pool.factory); 59 59 //rtp_test(&caching_pool.factory); 60 60 //session_test (&caching_pool.factory); 61 //jbuf_main(&caching_pool.factory);61 jbuf_main(); 62 62 63 63 PJ_LOG(3,(THIS_FILE," ")); 64 65 on_return:66 64 67 65 if (rc != 0) {
Note: See TracChangeset
for help on using the changeset viewer.