int main( void ) { const testFunc tests[] = { test_base64, test_hex, test_lowerbound, test_strip_positional_args, test_strstrip, test_buildpath, test_utf8, test_numbers, test_memmem, test_array, test_url, test_truncd, test_cryptoRand, }; int ret; int l; if( (ret = runTests(tests, NUM_TESTS(tests))) ) return ret; /* simple bitfield tests */ for( l = 0; l < NUM_LOOPS; ++l ) if( ( ret = test_bitfields( ) ) ) return ret; /* bitfield count range */ for( l=0; l<10000; ++l ) if(( ret = test_bitfield_count_range( ))) return ret; return 0; }
int main (void) { int l; int ret; const testFunc tests[] = { test_bitfields }; if ((ret = runTests (tests, NUM_TESTS (tests)))) return ret; /* bitfield count range */ for (l=0; l<10000; ++l) if ((ret = test_bitfield_count_range ())) return ret; return 0; }