Searched refs:testcase (Results 1 - 13 of 13) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/libevent-2.0.20-stable/test/
H A Dregress_main.c189 basic_test_setup(const struct testcase_t *testcase) argument
196 if (testcase->flags & TT_ENABLE_IOCP_FLAG)
200 if (testcase->flags & TT_NEED_THREADS) {
201 if (!(testcase->flags & TT_FORK))
214 if (testcase->flags & TT_NEED_SOCKETPAIR) {
230 if (testcase->flags & TT_NEED_BASE) {
231 if (testcase->flags & TT_LEGACY)
238 if (testcase->flags & TT_ENABLE_IOCP_FLAG) {
245 if (testcase->flags & TT_NEED_DNS) {
251 if (testcase
265 basic_test_cleanup(const struct testcase_t *testcase, void *ptr) argument
305 legacy_test_setup(const struct testcase_t *testcase) argument
343 legacy_test_cleanup(const struct testcase_t *testcase, void *ptr) argument
[all...]
H A Dtinytest.c86 _testcase_run_bare(const struct testcase_t *testcase) argument
90 if (testcase->setup) {
91 env = testcase->setup->setup_fn(testcase);
99 testcase->fn(env);
102 if (testcase->setup) {
103 if (testcase->setup->cleanup_fn(testcase, env) == 0)
114 const struct testcase_t *testcase)
140 commandname, verbosity_flag, group->prefix, testcase
113 _testcase_run_forked(const struct testgroup_t *group, const struct testcase_t *testcase) argument
213 testcase_run_one(const struct testgroup_t *group, const struct testcase_t *testcase) argument
[all...]
H A Dregress_buffer.c1631 setup_passthrough(const struct testcase_t *testcase) argument
1633 return testcase->setup_data;
1636 cleanup_passthrough(const struct testcase_t *testcase, void *ptr) argument
H A Dregress_dns.c1684 testleak_setup(const struct testcase_t *testcase) argument
1703 testleak_cleanup(const struct testcase_t *testcase, void *env_) argument
/netgear-R7000-V1.0.7.12_1.2.5/src/router/busybox-1.x/testsuite/
H A Druntest12 local testcase=$2
18 local testname=$(basename $testcase)
25 if grep -q "^# FEATURE: " $testcase; then
26 local feature=`sed -ne 's/^# FEATURE: //p' $testcase`
38 d=$srcdir sh -x -e $testcase >.logfile.txt 2>&1 || status=$?
64 for testcase in $srcdir/$applet/*; do
65 if [ "$testcase" = "$srcdir/$applet/CVS" ]; then
69 if run_applet_testcase $applet $testcase; then
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/unittests/muleunit/
H A DMakefile.am6 testcase.cpp \
7 testcase.h \
H A DMakefile.in75 libmuleunit_a-main.$(OBJEXT) libmuleunit_a-testcase.$(OBJEXT) \
338 testcase.cpp \
339 testcase.h \
401 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmuleunit_a-testcase.Po@am__quote@
452 libmuleunit_a-testcase.o: testcase.cpp
453 @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmuleunit_a_CPPFLAGS) $(CPPFLAGS) $(libmuleunit_a_CXXFLAGS) $(CXXFLAGS) -MT libmuleunit_a-testcase.o -MD -MP -MF $(DEPDIR)/libmuleunit_a-testcase.Tpo -c -o libmuleunit_a-testcase.o `test -f 'testcase
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libexif-0.6.19/test/nls/
H A Dtest-nls.c15 typedef struct _testcase testcase; typedef in typeref:struct:_testcase
18 static testcase testcases[] = {
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/unit/
H A Dunit1307.c33 struct testcase { struct
39 static const struct testcase tests[] = {
222 int testnum = sizeof(tests) / sizeof(struct testcase);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/server/
H A Dtftpd.c105 struct testcase { struct
271 static int readit(struct testcase *test,
275 static int writeit(struct testcase *test,
280 static void read_ahead(struct testcase *test, int convert);
282 static ssize_t write_behind(struct testcase *test, int convert);
286 static int do_tftp(struct testcase *test, struct tftphdr *tp, ssize_t size);
288 static int validate_access(struct testcase *test, const char *fname, int mode);
290 static void sendtftp(struct testcase *test, struct formats *pf);
292 static void recvtftp(struct testcase *test, struct formats *pf);
462 static int readit(struct testcase *tes
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/sqlite-3.6.22/
H A Dsqlite3.c441 ** The testcase() macro is used to aid in coverage testing. When
443 ** testcase() must be evaluated both true and false in order to
444 ** get full branch coverage. The testcase() macro is inserted
446 ** condition/decision coverage is inadequate. For example, testcase()
448 ** bitmask tests, testcase() can be used to make sure each bit
450 ** where multiple cases go to the same block of code, testcase()
456 # define testcase(X) if( X ){ sqlite3Coverage(__LINE__); } macro
458 # define testcase(X) macro
464 ** within testcase() and assert() macros.
11814 testcase(
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/sqlite-3.6.22/
H A Dsqlite3.c441 ** The testcase() macro is used to aid in coverage testing. When
443 ** testcase() must be evaluated both true and false in order to
444 ** get full branch coverage. The testcase() macro is inserted
446 ** condition/decision coverage is inadequate. For example, testcase()
448 ** bitmask tests, testcase() can be used to make sure each bit
450 ** where multiple cases go to the same block of code, testcase()
456 # define testcase(X) if( X ){ sqlite3Coverage(__LINE__); } macro
458 # define testcase(X) macro
464 ** within testcase() and assert() macros.
11814 testcase(
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mmc/card/
H A Dmmc_test.c1856 static void mmc_test_run(struct mmc_test_card *test, int testcase) argument
1866 if (testcase && ((i + 1) != testcase))
1940 int testcase; local
1944 testcase = simple_strtol(buf, NULL, 10);
1963 mmc_test_run(test, testcase);

Completed in 898 milliseconds