Home
last modified time | relevance | path

Searched refs:tests (Results 326 - 350 of 1133) sorted by relevance

1...<<11121314151617181920>>...46

/third_party/cJSON/
H A DMakefile69 .PHONY: all shared static tests clean install
71 all: shared static tests
77 tests: $(CJSON_TEST)
79 test: tests
85 #tests
/third_party/libabigail/tests/
H A Dtest-abidiff-exit.cc30 using abigail::tests::emit_test_status_and_update_counters;
31 using abigail::tests::emit_test_summary;
496 using abigail::tests::get_src_dir; in main()
497 using abigail::tests::get_build_dir; in main()
508 string source_dir_prefix = string(get_src_dir()) + "/tests/"; in main()
509 string build_dir_prefix = string(get_build_dir()) + "/tests/"; in main()
H A Dtest-core-diff.cc143 string(abigail::tests::get_src_dir()) + "/tests/" + input_suffix; in main()
147 string(abigail::tests::get_build_dir()) + "/tests/" + output_suffix; in main()
/third_party/mbedtls/tests/scripts/
H A Dtest_psa_constant_names.py114 """An object representing tests and their results."""
171 TEST_SUITES = ['tests/suites/test_suite_psa_crypto_metadata.data']
196 tests = Tests(options)
197 tests.run_all(inputs)
198 tests.report(sys.stdout)
199 if tests.errors:
/third_party/node/test/parallel/
H A Dtest-http-set-timeout-server.js29 const tests = [];
32 if (!tests.length)
34 tests.push(common.mustCall(fn));
38 const fn = tests.shift();
H A Dtest-https-set-timeout-server.js34 const tests = [];
42 if (!tests.length)
44 tests.push(common.mustCall(fn));
48 const fn = tests.shift();
H A Dtest-repl-pretty-custom-stack.js47 const tests = [
74 tests.forEach(run);
H A Dtest-repl-pretty-stack.js36 const tests = [
76 tests.forEach(run);
/third_party/python/Lib/test/
H A Dtest_doctest.py26 # NOTE: There are some additional tests relating to interaction with
28 # There are also related tests in `test_doctest2` module.
186 Unit tests for the `Example` class.
307 Unit tests for the `DocTest` class.
441 Unit tests for the `DocTestFinder` class.
461 >>> tests = finder.find(sample_func)
463 >>> print(tests) # doctest: +ELLIPSIS
469 >>> tests[0].filename # doctest: +ELLIPSIS
475 >>> e = tests[0].examples[0]
479 By default, tests ar
[all...]
H A Dtest_threading_local.py220 def load_tests(loader, tests, pattern):
221 tests.addTest(DocTestSuite('_threading_local'))
228 tests.addTests(DocTestSuite('_threading_local',
231 return tests
/third_party/rust/crates/memchr/src/tests/memchr/
H A Dtestdata.rs3 /// Create a sequence of tests that should be run by memchr implementations.
5 let mut tests = Vec::new(); in memchr_tests() variables
17 tests.push(t.clone()); in memchr_tests()
18 tests.extend(t.expand()); in memchr_tests()
20 tests in memchr_tests()
23 /// A set of tests for memchr-like functions.
25 /// These tests mostly try to cover the short string cases. We cover the longer
26 /// string cases via the benchmarks (which are tests themselves), via
27 /// quickcheck tests and via automatic expansion of each test case (by
29 /// in the tests b
[all...]
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DChineseTest.java196 * Run through several standard tests from Dershowitz & Reingold.
201 final TestCase[] tests = { in TestJulianDayMapping()
247 // Additional tests not from D&R in TestJulianDayMapping()
253 doTestCases(tests, cal); in TestJulianDayMapping()
258 * Q: Why is this in Calendar tests instead of Format tests?
439 int[][] tests = new int[][] { in TestAdd()
456 doRollAdd(ADD, cal, tests); in TestAdd()
465 int[][] tests = new int[][] { in TestRoll()
488 doRollAdd(ROLL, cal, tests); in TestRoll()
491 doRollAdd(boolean roll, ChineseCalendar cal, int[][] tests) doRollAdd() argument
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/calendar/
H A DChineseTest.java199 * Run through several standard tests from Dershowitz & Reingold.
204 final TestCase[] tests = { in TestJulianDayMapping()
250 // Additional tests not from D&R in TestJulianDayMapping()
256 doTestCases(tests, cal); in TestJulianDayMapping()
261 * Q: Why is this in Calendar tests instead of Format tests?
442 int[][] tests = new int[][] { in TestAdd()
459 doRollAdd(ADD, cal, tests); in TestAdd()
468 int[][] tests = new int[][] { in TestRoll()
491 doRollAdd(ROLL, cal, tests); in TestRoll()
494 doRollAdd(boolean roll, ChineseCalendar cal, int[][] tests) doRollAdd() argument
[all...]
/test/testfwk/xdevice/src/xdevice/_core/report/
H A Dresult_reporter.py66 self.tests = 0
78 f"total: {self.tests}, passed: {self.passed}, failed: {self.failed}, "
84 "tests": self.tests,
284 self.summary.tests += module.tests
323 "tests": module.tests,
329 "passingrate": calculate_percent(module.passed, module.tests),
345 "tests"
[all...]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/plugins/ets/
H A Dets_utils.py38 def create_report(self, generated_folder: Path, tests: List[str]) -> None:
41 for test_full_name in tests:
/third_party/mesa3d/src/amd/compiler/tests/
H A Dframework.h41 extern std::map<std::string, TestDef> tests;
64 tests[#name] = (TestDef){#name, ACO_TEST_BUILD_ROOT "/" __FILE__, &struct_name};\
/third_party/node/test/fixtures/wpt/common/
H A Dsubset-tests.js13 // Below is utility code to generate <meta> for copy/paste into tests.
19 add_completion_callback(tests => {
20 var total = tests.length;
44 * Only test a subset of tests with, e.g., `?1-10` in the URL.
47 * for (const test of tests) {
/third_party/mesa3d/src/gallium/drivers/r300/compiler/tests/
H A Dradeon_compiler_regalloc_tests.c95 static struct test tests[] = { in radeon_compiler_regalloc_run_tests() local
99 return run_tests(tests); in radeon_compiler_regalloc_run_tests()
H A Dradeon_compiler_optimize_tests.c84 static struct test tests[] = { in radeon_compiler_optimize_run_tests() local
88 return run_tests(tests); in radeon_compiler_optimize_run_tests()
/third_party/skia/third_party/externals/expat/expat/tests/
H A Dminicheck.h4 tests. This interface is based entirely on the portion of the
85 TCase *tests; member
92 tcase_test_function *tests; member
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
H A Dutf8_test.cc31 std::pair<char32_t, std::string> tests[] = {{0x0030, u8"\u0030"}, in TEST() local
36 for (auto &test : tests) { in TEST()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/sc/
H A DvktApplicationParametersTests.cpp109 // There is no default test case for the invalid param value and valid tests. in getDefaultTestData()
110 // Vendors should provide their own test data for these tests in getTestDataList. in getDefaultTestData()
142 // The invalid param value and valid tests need to use vendor-specific application in getTestDataList()
144 // provide their own test data for the invalid param value and valid tests here. in getTestDataList()
374 } tests[5] = in createApplicationParametersTests() local
387 for (int testIdx = 0; testIdx < DE_LENGTH_OF_ARRAY(tests); ++testIdx) in createApplicationParametersTests()
389 TestParams testParams = { groups[groupIdx].createType, tests[testIdx].testType }; in createApplicationParametersTests()
392 addFunctionCase(createGroup.get(), tests[testIdx].name, checkSupport, createInstanceTest, testParams); in createApplicationParametersTests()
394 addFunctionCase(createGroup.get(), tests[testIdx].name, checkSupport, createDeviceTest, testParams); in createApplicationParametersTests()
/third_party/skia/tools/fm/fm_bot/
H A Dfm_bot.go50 // Query fm binary for list of all available GMs/tests by running with --listGMs/--listTests.
71 func parseWork(args []string, gms []string, tests []string) (*work, error) {
84 // Same for tests.
85 if arg == "test" || arg == "tests" {
86 w.Sources = append(w.Sources, tests...)
90 // -foo to remove foo if already added (e.g. by gms, tests).
121 for _, test := range tests {
169 tests, err := listAll("--listTests", fm)
171 log.Fatalln("Could not query", fm, "for tests:", err)
251 w, err := parseWork(job, gms, tests)
[all...]
/third_party/python/Lib/unittest/
H A Dsuite.py21 def __init__(self, tests=()):
24 self.addTests(tests)
27 return "<%s tests=%s>" % (util.strclass(self.__class__), list(self))
54 def addTests(self, tests):
55 if isinstance(tests, str):
56 raise TypeError("tests must be an iterable of tests, not a string")
57 for test in tests:
77 # Some unittest tests add non TestCase/TestSuite objects to
87 """Run the tests withou
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/sc/
H A DvktApplicationParametersTests.cpp109 // There is no default test case for the invalid param value and valid tests. in getDefaultTestData()
110 // Vendors should provide their own test data for these tests in getTestDataList. in getDefaultTestData()
142 // The invalid param value and valid tests need to use vendor-specific application in getTestDataList()
144 // provide their own test data for the invalid param value and valid tests here. in getTestDataList()
374 } tests[5] = in createApplicationParametersTests() local
387 for (int testIdx = 0; testIdx < DE_LENGTH_OF_ARRAY(tests); ++testIdx) in createApplicationParametersTests()
389 TestParams testParams = { groups[groupIdx].createType, tests[testIdx].testType }; in createApplicationParametersTests()
392 addFunctionCase(createGroup.get(), tests[testIdx].name, "", checkSupport, createInstanceTest, testParams); in createApplicationParametersTests()
394 addFunctionCase(createGroup.get(), tests[testIdx].name, "", checkSupport, createDeviceTest, testParams); in createApplicationParametersTests()

Completed in 11 milliseconds

1...<<11121314151617181920>>...46