Home
last modified time | relevance | path

Searched refs:testcase (Results 1 – 25 of 127) sorted by relevance

123456

/OK3568_Linux_fs/yocto/poky/meta/recipes-support/libevent/libevent/
H A D0004-test-retriable-tests-are-marked-failed-only-when-all-a.patch25 - const struct testcase_t *testcase)
26 + const struct testcase_t *testcase,
36 + if (!opt_forked && (testcase->flags & TT_RETRIABLE) && !test_attempts)
37 printf("\n [%s FAILED]\n", testcase->name);
43 struct testcase_t *testcase = &group->cases[j];
45 + int test_attempts = (testcase->flags & TT_RETRIABLE) ? 3: 1;
48 if (!(testcase->flags & TT_ENABLED_))
52 - test_ret_err = testcase_run_one(group, testcase);
53 + test_ret_err = testcase_run_one(group, testcase, test_attempts);
57 - if (!(testcase->flags & TT_RETRIABLE))
[all …]
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Ddecorators.py58 def __init__(self,testcase): argument
59 self.testcase = testcase
65 if self.testcase in (res.getFailList() or res.getErrorList()):
66 raise unittest.SkipTest("Testcase dependency not met: %s" % self.testcase)
73 def __init__(self,testcase): argument
74 self.testcase = testcase
80 if self.testcase in res.getSkipList():
81 raise unittest.SkipTest("Testcase dependency not met: %s" % self.testcase)
88 def __init__(self,testcase): argument
89 self.testcase = testcase
[all …]
/OK3568_Linux_fs/kernel/drivers/of/unittest-data/
H A Dtests-interrupts.dtsi4 testcase-data {
59 testcase-device1 {
60 compatible = "testcase-device";
65 testcase-device2 {
66 compatible = "testcase-device";
H A Dtests-phandle.dtsi5 testcase-alias = &testcase;
8 testcase: testcase-data { label
H A Doverlay_base.dts9 * Do not add any nodes other than "/testcase-data-2" in node "/".
15 testcase-data-2 {
/OK3568_Linux_fs/kernel/tools/testing/selftests/vm/
H A Dva_128TBswitch.c33 struct testcase { struct
42 static struct testcase testcases[] = { argument
167 static struct testcase hugetlb_testcases[] = {
231 static int run_test(struct testcase *test, int count) in run_test()
237 struct testcase *t = test + i; in run_test()
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/ifupdown/files/
H A Dtweak-ptest-script.patch27 - ./ifup -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $a…
28 + ifup -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $arg…
36 - ./ifdown -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test …
37 + ifdown -v --no-act-commands --force -i $dir/testcase.$test --state-dir=$dir/state.$test $a…
H A D0001-ifupdown-skip-wrong-test-case.patch6 The test parameters of testcase(12-15) file is not right,
27 if [ -e $dir/testcase.$test ]; then
28 args="$(cat $dir/testcase.$test | sed -n 's/^# RUN: //p')"
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/buildperf/
H A Dbase.py198 testcase = ET.SubElement(suite, 'testcase')
199 testcase.set('classname', test.__module__ + '.' + test.__class__.__name__)
200 testcase.set('name', test.name)
201 testcase.set('description', test.shortDescription())
202 testcase.set('timestamp', test.start_time.isoformat())
203 testcase.set('time', str(test.elapsed_time.total_seconds()))
206 result = ET.SubElement(testcase, 'failure')
208 result = ET.SubElement(testcase, 'error')
213 result = ET.SubElement(testcase, 'skipped')
219 measurement = ET.SubElement(testcase, data['type'])
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeopositioninfosource/
H A Dqgeopositioninfosource.pro2 CONFIG+=testcase
3 testcase.timeout = 400 # this test is slow
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qnmeapositioninfosource/qnmeapositioninfosource_realtime_generic/
H A Dqnmeapositioninfosource_realtime_generic.pro2 CONFIG+=testcase
3 testcase.timeout = 400 # this test is slow
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qnmeapositioninfosource/qnmeapositioninfosource_simulation_generic/
H A Dqnmeapositioninfosource_simulation_generic.pro2 CONFIG+=testcase
3 testcase.timeout = 400 # this test is slow
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/stringloops/
H A Dmemcmp.c74 static int testcase(bool islarge) in testcase() function
160 testcase(0); in testcases()
161 testcase(1); in testcases()
H A Dstrlen.c51 static int testcase(void) in testcase() function
126 return test_harness(testcase, "strlen"); in main()
/OK3568_Linux_fs/kernel/drivers/dma/xilinx/
H A Dxilinx_dpdma.c287 enum xilinx_dpdma_testcases testcase; member
310 dpdma_debugfs.testcase = DPDMA_TC_NONE; in xilinx_dpdma_debugfs_desc_done_irq_read()
342 dpdma_debugfs.testcase = DPDMA_TC_INTR_DONE; in xilinx_dpdma_debugfs_desc_done_irq_write()
362 enum xilinx_dpdma_testcases testcase; in xilinx_dpdma_debugfs_read() local
371 dpdma_debugfs.testcase = DPDMA_TC_NONE; in xilinx_dpdma_debugfs_read()
375 testcase = READ_ONCE(dpdma_debugfs.testcase); in xilinx_dpdma_debugfs_read()
376 if (testcase != DPDMA_TC_NONE) { in xilinx_dpdma_debugfs_read()
377 ret = dpdma_debugfs_reqs[testcase].read(kern_buff); in xilinx_dpdma_debugfs_read()
403 char *testcase; in xilinx_dpdma_debugfs_write() local
411 if (dpdma_debugfs.testcase != DPDMA_TC_NONE) in xilinx_dpdma_debugfs_write()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-support/lksctp-tools/
H A Dlksctp-tools_1.0.19.bb32 …for testcase in `find ${B}/src/apps/.libs ${B}/src/func_tests/.libs -maxdepth 1 -type f -executabl…
33 install $testcase ${D}${PTEST_PATH}
/OK3568_Linux_fs/kernel/tools/testing/selftests/net/
H A Dudpgso.c64 struct testcase { struct
75 struct testcase testcases_v4[] = { argument
178 struct testcase testcases_v6[] = {
505 static void run_one(struct testcase *test, int fdt, int fdr, in run_one()
559 struct testcase *tests, *test; in run_all()
/OK3568_Linux_fs/kernel/Documentation/devicetree/
H A Dof_unittest.rst127 testcase-data
142 replaces the current child and turns it into its sibling. So, when the testcase
148 testcase-data -> child1 -> sibling2 -> sibling3 -> sibling4 -> null
170 testcase-data -> child1 -> sibling2 -> sibling3 -> sibling4 -> null
179 Figure 3: Live device tree structure after attaching the testcase-data.
/OK3568_Linux_fs/kernel/tools/perf/tests/
H A Dbackward-ring-buffer.c20 static void testcase(void) in testcase() function
76 testcase(); in do_test()
/OK3568_Linux_fs/yocto/poky/meta/recipes-support/curl/curl/
H A DCVE-2023-23914_5-5.patch36 +<testcase>
118 +</testcase>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoshape/
H A Dqgeoshape.pro1 load(testcase)
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacemanager_nokia/
H A Dqplacemanager_nokia.pro1 CONFIG += testcase
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacesearchresult/
H A Dqplacesearchresult.pro2 CONFIG += testcase
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeosatelliteinfo/
H A Dqgeosatelliteinfo.pro2 CONFIG+=testcase
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocircle/
H A Dqgeocircle.pro2 CONFIG += testcase

123456