Home
last modified time | relevance | path

Searched refs:cases (Results 1 – 25 of 1203) sorted by relevance

12345678910>>...49

/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/decorator/
H A Ddepends.py34 def _validate_test_case_depends(cases, depends): argument
36 if not case in cases:
39 if not dep in cases:
41 ", cases available %s." % (case, dep, str(cases.keys())))
43 def _order_test_case_by_depends(cases, depends): argument
55 dep_graph['__root__'] = cases.keys()
56 for case in cases:
66 return [cases[case_id] for case_id in cases_ordered]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/mcelog/mce-test/
H A Dmakefile-remove-ldflags.patch7 diff --git a/cases/stress/hwpoison/Makefile b/cases/stress/hwpoison/Makefile
9 --- a/cases/stress/hwpoison/Makefile
10 +++ b/cases/stress/hwpoison/Makefile
H A D0001-gcov_merge.py-scov_merge.py-switch-to-python3.patch24 # Merge gcov graph from several test cases. This can be used to check
25 # the coverage of several test cases.
70 # Merge mce serverity coverage file from several test cases. This can
71 # be used to check the coverage of several test cases.
/OK3568_Linux_fs/yocto/poky/scripts/lib/resulttool/
H A Dmanualexecution.py123 cases = load_json_file(case_file)
133 for case in copy.deepcopy(cases) :
135 cases.remove(case)
137 print('\nTotal number of test cases in this test suite: %s\n' % len(cases))
138 for c in cases:
194 cases = load_json_file(case_file)
200 for case in cases:
/OK3568_Linux_fs/kernel/net/bluetooth/
H A DKconfig119 cases are run first thing at module load time. When the Bluetooth
120 subsystem is compiled into the kernel image, then the test cases
124 bool "ECDH test cases"
127 Run test cases for ECDH cryptographic functionality used by the
131 bool "SMP test cases"
134 Run test cases for SMP cryptographic functionality, including both
/OK3568_Linux_fs/kernel/tools/testing/selftests/tc-testing/
H A DREADME59 cases. To disable execution within the namespace, pass the -N option
77 future). A test suite has one or more test cases in it.
106 executed as part of the test. More will be added as test cases require.
111 The NAMES values are used to substitute into the commands in the test cases.
131 Execute test cases that use a physical device, where
137 select which test cases: files plus directories; filtered by categories
150 Execute the specified test cases with specified IDs
153 select action to perform on selected test cases
155 -l, --list List all test cases, or those only within the
157 -s, --show Display the selected test cases
[all …]
/OK3568_Linux_fs/kernel/scripts/coccinelle/misc/
H A Dcond_no_effect.cocci5 // There can be false positives in cases where the positional
7 // is a placeholder for not yet handled cases.
17 // the two known cases are:
38 // All other cases look like bugs or at least lack of documentation
/OK3568_Linux_fs/kernel/Documentation/RCU/
H A Drcuref.rst11 those unusual cases where percpu-ref would consume too much memory,
82 update (write) stream. In such cases, atomic_inc_not_zero() might be
84 use atomic_inc() in such cases.
87 search_and_reference() code path. In such cases, the
139 In cases where delete() can sleep, synchronize_rcu() can be called from
/OK3568_Linux_fs/kernel/tools/testing/selftests/rcutorture/doc/
H A DTINY_RCU.txt1 This document gives a brief rationale for the TINY_RCU test cases.
19 In common code tested by TREE_RCU test cases.
/OK3568_Linux_fs/yocto/meta-openembedded/meta-python/recipes-devtools/python/
H A Dpython3-async-timeout_4.0.2.bb3 The context manager is useful in cases when you want to apply \
4 timeout logic around block of code or in cases when asyncio.wait_for() \
H A Dpython3-async-timeout_4.0.0.bb3 The context manager is useful in cases when you want to apply \
4 timeout logic around block of code or in cases when asyncio.wait_for() \
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/readline/readline/
H A Dnorpath.patch3 cases this is necessary but our use cases aren't one of them.
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/slimbus/
H A Dbus.txt18 In some cases it may be necessary to describe non-probeable device
20 such cases, child nodes for those devices will be present as
28 Instance ID Is for the cases where multiple Devices of the
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/adbg/include/
H A Dadbg.h45 struct adbg_case_def_head cases; member
57 struct adbg_case_def_head *ch = &(ADBG_Suite_ ## Suite).cases; \
82 .cases = TAILQ_HEAD_INITIALIZER(ADBG_Suite_ ## Name.cases), \
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/iommu/
H A Diommu.txt44 the specific IOMMU. Below are a few examples of typical use-cases:
51 In such cases the number of cells will usually be 1 as in the next case.
53 in order to enable translation for a given master. In such cases the single
54 address cell corresponds to the master device's ID. In some cases more than
62 Note that these are merely examples and real-world use-cases may use different
85 have a means to turn off translation. But it is invalid in such cases to
/OK3568_Linux_fs/kernel/tools/testing/kunit/
H A Dkunit_parser.py23 self.cases = []
26 return 'TestSuite(' + self.status + ',' + self.name + ',' + str(self.cases) + ')'
231 max_test_case_status = bubble_up_errors(lambda x: x.status, test_suite.cases)
251 test_suite.cases.append(test_case)
325 for test_case in test_suite.cases:
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/adbg/src/
H A Dadbg_run.c99 TAILQ_CONCAT(&Dest_p->cases, &Source_p->cases, link); in Do_ADBG_AppendToSuite()
123 TAILQ_FOREACH(case_def, &Runner_p->Suite_p->cases, link) { in ADBG_RunSuite()
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/
H A DREADME18 filtering test cases.
25 decorators for Test cases.
48 a unified way to run test cases. Internally it scans folders inside oeqa module in order to find
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/core/tests/
H A Dtest_loader.py47 cases = set(getSuiteCasesIDs(tc.suites))
49 self.assertEqual(cases, expected_cases, msg=msg)
/OK3568_Linux_fs/yocto/meta-rockchip/dynamic-layers/recipes-browser/chromium/chromium_111.0.5563/
H A D0007-media-capture-linux-Prefer-using-the-first-device.patch7 cases, e.g. apprtc.
25 + // HACK: Somehow the newest chromium would prefer using the last device in some cases, e.g. …
/OK3568_Linux_fs/yocto/meta-rockchip/dynamic-layers/recipes-browser/chromium/chromium_96.0.4664/
H A D0007-media-capture-linux-Prefer-using-the-first-device.patch7 cases, e.g. apprtc.
25 + // HACK: Somehow the newest chromium would prefer using the last device in some cases, e.g. …
/OK3568_Linux_fs/yocto/meta-rockchip/dynamic-layers/recipes-browser/chromium/chromium_101.0.4951/
H A D0006-media-capture-linux-Prefer-using-the-first-device.patch7 cases, e.g. apprtc.
25 + // HACK: Somehow the newest chromium would prefer using the last device in some cases, e.g. …
/OK3568_Linux_fs/yocto/meta-rockchip/dynamic-layers/recipes-browser/chromium/chromium_98.0.4758/
H A D0008-media-capture-linux-Prefer-using-the-first-device.patch7 cases, e.g. apprtc.
25 + // HACK: Somehow the newest chromium would prefer using the last device in some cases, e.g. …
/OK3568_Linux_fs/yocto/meta-rockchip/dynamic-layers/recipes-browser/chromium/chromium_100.0.4896/
H A D0006-media-capture-linux-Prefer-using-the-first-device.patch7 cases, e.g. apprtc.
25 + // HACK: Somehow the newest chromium would prefer using the last device in some cases, e.g. …
/OK3568_Linux_fs/yocto/meta-rockchip/dynamic-layers/recipes-browser/chromium/chromium_104.0.5112/
H A D0006-media-capture-linux-Prefer-using-the-first-device.patch7 cases, e.g. apprtc.
25 + // HACK: Somehow the newest chromium would prefer using the last device in some cases, e.g. …

12345678910>>...49