Correct table clear bug in route table ready
[ric-plt/lib/rmr.git] / test / rmr_si_test.c
index 9f49530..3ae8d9d 100644 (file)
 #include <semaphore.h>
 
 #define DEBUG 1
+#define PARANOID_CHECKS        1                                       // must have parinoid testing on to not fail on nil pointer tests
 
                                                                                        // specific test tools in this directory
 #undef NNG_UNDER_TEST 
 #include "test_support.c"                                      // things like fail_if()
-#include "test_ctx_support.c"                          // dummy context support
+#include "test_msg_support.c"
 #include "test_gen_rt.c"
 
 
@@ -73,6 +74,9 @@
 #include "rmr_si.c"
 #include "mbuf_api.c"
 
+#include "test_ctx_support.c"                          // dummy context support
+
+
 static void gen_rt( uta_ctx_t* ctx );          // defined in sr_si_static_test, but used by a few others (eliminate order requirement below)
 
                                                                                        // and finally....
@@ -83,6 +87,8 @@ static void gen_rt( uta_ctx_t* ctx );         // defined in sr_si_static_test, but used
 #include "wormhole_static_test.c"
 #include "mbuf_api_static_test.c"
 #include "sr_si_static_test.c"
+#include "lg_buf_static_test.c"
+// do NOT include the receive test static must be stand alone
 
 #include "rmr_si_api_static_test.c"
 
@@ -95,6 +101,10 @@ int main() {
 
        rmr_set_vlevel( 5 );                    // enable all debugging
 
+       fprintf( stderr, "\n<INFO> starting lg buffer tests (%d)\n", errors );
+       errors += rmr_lgbuf_test();
+       fprintf( stderr, "<INFO> error count: %d\n", errors );
+
        fprintf( stderr, "\n<INFO> starting ring tests (%d)\n", errors );
        errors += ring_test();
        fprintf( stderr, "<INFO> error count: %d\n", errors );
@@ -135,10 +145,11 @@ int main() {
        fprintf( stderr, "<INFO> error count: %d\n", errors );
 */
 
+       test_summary( errors, "rmr_si tests" );
        if( errors == 0 ) {
-               fprintf( stderr, "<PASS> all tests were OK\n\n" );
+               fprintf( stderr, "<PASS> all rmr si tests were OK\n\n" );
        } else {
-               fprintf( stderr, "<FAIL> %d modules reported errors\n\n", errors );
+               fprintf( stderr, "<FAIL> %d rmr si test modules reported errors\n\n", errors );
        }
 
        return !!errors;