Home
last modified time | relevance | path

Searched refs:suite (Results 1 – 25 of 1277) sorted by relevance

12345678910>>...52

/third_party/selinux/libsepol/cil/test/unit/
DCilTest.c158 CuSuite* suite = CuSuiteNew(); in CilTreeGetResolveSuite() local
161 SUITE_ADD_TEST(suite, test_cil_resolve_ast_curr_null_neg); in CilTreeGetResolveSuite()
162 SUITE_ADD_TEST(suite, test_cil_gen_perm_nodes_inval_perm_neg); in CilTreeGetResolveSuite()
164 SUITE_ADD_TEST(suite, test_cil_resolve_name); in CilTreeGetResolveSuite()
165 SUITE_ADD_TEST(suite, test_cil_resolve_name_invalid_type_neg); in CilTreeGetResolveSuite()
167 SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_type_in_multiple_attrs); in CilTreeGetResolveSuite()
168 SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_multiple_excludes_with_not); in CilTreeGetResolveSuite()
169 SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_multiple_types_with_and); in CilTreeGetResolveSuite()
170 SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_using_attr); in CilTreeGetResolveSuite()
171 SUITE_ADD_TEST(suite, test_cil_resolve_typeattributeset_name_neg); in CilTreeGetResolveSuite()
[all …]
/third_party/quickjs/
Dtest262o.conf32 testdir=test262o/test/suite
38 test262o/test/suite/intl402/
41 test262o/test/suite/bestPractice/Sbp_A1_T1.js
42 test262o/test/suite/bestPractice/Sbp_A2_T1.js
43 test262o/test/suite/bestPractice/Sbp_A2_T2.js
44 test262o/test/suite/bestPractice/Sbp_A3_T1.js
45 test262o/test/suite/bestPractice/Sbp_A3_T2.js
46 test262o/test/suite/bestPractice/Sbp_A4_T1.js
47 test262o/test/suite/bestPractice/Sbp_A4_T2.js
48 test262o/test/suite/bestPractice/Sbp_A5_T2.js
[all …]
/third_party/boost/libs/config/test/all/
DJamfile.v225 test-suite "BOOST_HAS_TWO_ARG_USE_FACET" :
28 test-suite "BOOST_HAS_BETHREADS" :
31 test-suite "BOOST_HAS_CLOCK_GETTIME" :
34 test-suite "BOOST_HAS_PRAGMA_DETECT_MISMATCH" :
37 test-suite "BOOST_HAS_DIRENT_H" :
40 test-suite "BOOST_HAS_EXPM1" :
43 test-suite "BOOST_HAS_FLOAT128" :
46 test-suite "BOOST_HAS_FTIME" :
49 test-suite "BOOST_HAS_GETSYSTEMTIMEASFILETIME" :
52 test-suite "BOOST_HAS_GETTIMEOFDAY" :
[all …]
/third_party/python/Lib/unittest/test/
Dtest_suite.py51 suite = unittest.TestSuite()
53 self.assertEqual(suite.countTestCases(), 0)
55 suite.run(unittest.TestResult())
56 self.assertEqual(suite.countTestCases(), 0)
66 suite = unittest.TestSuite([])
68 self.assertEqual(suite.countTestCases(), 0)
70 suite.run(unittest.TestResult())
71 self.assertEqual(suite.countTestCases(), 0)
114 suite = unittest.TestSuite(tests())
115 self.assertEqual(suite.countTestCases(), 2)
[all …]
Dtest_loader.py101 suite = loader.loadTestsFromTestCase(Foo)
102 self.assertIsInstance(suite, loader.suiteClass)
103 self.assertEqual(list(suite), [Foo('runTest')])
120 suite = loader.loadTestsFromModule(m)
121 self.assertIsInstance(suite, loader.suiteClass)
124 self.assertEqual(list(suite), expected)
133 suite = loader.loadTestsFromModule(m)
134 self.assertIsInstance(suite, loader.suiteClass)
135 self.assertEqual(list(suite), [])
147 suite = loader.loadTestsFromModule(m)
[all …]
D__init__.py9 def suite(): function
10 suite = unittest.TestSuite()
16 suite.addTest(loader.loadTestsFromModule(module))
17 suite.addTest(loader.loadTestsFromName('unittest.test.testmock'))
18 return suite
/third_party/boost/boost/beast/_experimental/unit_test/
Dsuite.hpp68 class suite class
90 suite& suite_;
94 log_buf(suite& self) in log_buf()
126 log_os(suite& self) in log_os()
137 suite& suite_;
142 testcase_t(suite& self) in testcase_t()
184 suite*
190 suite() in suite() function in boost::beast::unit_test::suite
196 virtual ~suite() = default;
197 suite(suite const&) = delete;
[all …]
/third_party/skia/third_party/externals/expat/expat/tests/
Dminicheck.c51 Suite *suite = (Suite *)calloc(1, sizeof(Suite)); in suite_create() local
52 if (suite != NULL) { in suite_create()
53 suite->name = name; in suite_create()
55 return suite; in suite_create()
68 suite_add_tcase(Suite *suite, TCase *tc) { in suite_add_tcase() argument
69 assert(suite != NULL); in suite_add_tcase()
73 tc->next_tcase = suite->tests; in suite_add_tcase()
74 suite->tests = tc; in suite_add_tcase()
111 suite_free(Suite *suite) { in suite_free() argument
112 if (! suite) { in suite_free()
[all …]
/third_party/expat/tests/
Dminicheck.c51 Suite *suite = (Suite *)calloc(1, sizeof(Suite)); in suite_create() local
52 if (suite != NULL) { in suite_create()
53 suite->name = name; in suite_create()
55 return suite; in suite_create()
68 suite_add_tcase(Suite *suite, TCase *tc) { in suite_add_tcase() argument
69 assert(suite != NULL); in suite_add_tcase()
73 tc->next_tcase = suite->tests; in suite_add_tcase()
74 suite->tests = tc; in suite_add_tcase()
111 suite_free(Suite *suite) { in suite_free() argument
112 if (! suite) { in suite_free()
[all …]
/third_party/python/Lib/test/
Dtest_sqlite.py17 return unittest.TestSuite([dbapi.suite(), types.suite(),
18 userfunctions.suite(),
19 factory.suite(), transactions.suite(),
20 hooks.suite(), regression.suite(),
21 dump.suite(),
22 backup.suite()])
/third_party/python/Lib/lib2to3/fixes/
Dfix_metaclass.py33 if node.type == syms.suite:
50 if node.type == syms.suite:
62 suite = Node(syms.suite, [])
65 suite.append_child(move_node.clone())
67 cls_node.append_child(suite)
68 node = suite
103 if node.type == syms.suite:
123 def fixup_indent(suite): argument
127 kids = suite.children[::-1]
160 for suite, i, stmt in find_metas(node):
[all …]
/third_party/boringssl/src/util/fipstools/cavp/
Drun_cavp.go58 suite string member
366 suite *testSuite member
374 test := ti.suite.tests[ti.testIndex]
376 if err := doTest(ti.suite, test); err != nil {
382 if err := compareFAX(ti.suite, test); err != nil {
428 for _, suite := range testSuites {
429 for i := range suite.tests {
430 work <- testInstance{suite, i}
438 func doTest(suite *testSuite, test test) error {
447 args = append(args, suite.suite)
[all …]
/third_party/boost/libs/test/doc/test_organization/
Dtest_suites.qbk8 [section:test_suite Test suite]
9 If you consider test cases as leaves on the test tree, the test suite can be considered as branch a…
10 test suite/ as the /root/. Unlike real trees though, our tree in many cases consists only of leaves…
11 directly to the root. This is common for all test cases to reside directly in the master test suite
12 want to construct a hierarchical test suite structure the __UTF__ provides both manual and automated
13 test suite creation and registration facilities:
15 # Test suite with automated registration
16 # Manually registered test suite
19 [link boost_test.tests_organization.test_tree.master_test_suite Master test suite].
24 The solution the __UTF__ presents for automated test suite creation and registration is designed to…
[all …]
Dmaster_test_suite.qbk8 [section:master_test_suite Master test suite]
10 As defined in introduction section the master test suite is the *root* node of the test tree. Each …
11 …the __UTF__ always has the (unique) master test suite defined. The __UTF__ maintain the master tes…
12 …nally. All other test units are registered as direct or indirect children of the master test suite.
30 To access single instance of the master test suite use the following interface:
47 Master test suite implemented as an extension to the regular test suite, since it maintains referen…
56 parameters or as members of the master test suite. Both references point to the same values. A test…
58 master test suite.
66 [#ref_BOOST_TEST_MODULE][h4 Naming the ['Master test suite]]
68 The master test suite is created with default name ['Master Test Suite]. There are two methods two
[all …]
/third_party/libinput/doc/user/
Dtest-suite.rst1 .. _test-suite:
4 libinput test suite
7 libinput's primary test suite can be invoked with
11 $ sudo ./builddir/libinput-test-suite
13 When developing libinput, the ``libinput-test-suite`` should always be
18 the full suite when development is done finished.
20 .. note:: The test suite relies on udev and the kernel, specifically uinput.
22 interfere with your running session. The test suite is not suitable
27 ``meson test -C builddir`` (or ``ninja test``). The ``libinput-test-suite`` is
30 The upstream CI runs all these tests but not the ``libinput-test-suite``.
[all …]
/third_party/grpc/
DRakefile61 namespace :suite do namespace
62 SPEC_SUITES.each do |suite|
63 desc "Run all specs in the #{suite[:title]} spec suite"
64 RSpec::Core::RakeTask.new(suite[:id]) do |t|
65 ENV['COVERAGE_NAME'] = suite[:id].to_s
67 suite[:files].each { |f| spec_files += Dir[f] } if suite[:files]
69 if suite[:dir]
70 suite[:dir].each { |f| spec_files += Dir["#{f}/**/*_spec.rb"] }
76 t.rspec_opts = "--tag #{suite[:tag]}" if suite[:tag]
77 if suite[:tags]
[all …]
/third_party/mbedtls/tests/scripts/
Drun-test-suites.pl115 for my $suite (@suites)
117 print "$suite ", "." x ( 72 - length($suite) - 2 - 4 ), " ";
118 if( $suite =~ /$skip_re/o ) {
124 my $command = "$prefix$suite";
137 pad_print_center( 72, '-', "Begin $suite" );
139 pad_print_center( 72, '-', "End $suite" );
145 pad_print_center( 72, '-', "Begin $suite" );
147 pad_print_center( 72, '-', "End $suite" );
/third_party/typescript/src/testRunner/parallel/
Dworker.ts113 const suite = new Suite(title, suites[0].ctx); constant
114 suites[0].addSuite(suite);
115 suite.pending = !fn;
116 suites.unshift(suite);
118 fn.call(suite);
121 return suite;
150 for (const suite of unitTestSuite.suites) { constant
151 unitTestSuiteMap.set(suite.title, suite);
165 let suite = unitTestSuiteMap.get(task.file);
167 if (!suite && !test) {
[all …]
/third_party/libcoap/tests/
Dtest_uri.c580 CU_pSuite suite; in t_init_uri_tests() local
582 suite = CU_add_suite("uri parser", NULL, NULL); in t_init_uri_tests()
583 if (!suite) { /* signal error */ in t_init_uri_tests()
596 URI_TEST(suite, t_parse_uri1); in t_init_uri_tests()
597 URI_TEST(suite, t_parse_uri2); in t_init_uri_tests()
598 URI_TEST(suite, t_parse_uri3); in t_init_uri_tests()
599 URI_TEST(suite, t_parse_uri4); in t_init_uri_tests()
600 URI_TEST(suite, t_parse_uri5); in t_init_uri_tests()
601 URI_TEST(suite, t_parse_uri6); in t_init_uri_tests()
602 URI_TEST(suite, t_parse_uri7); in t_init_uri_tests()
[all …]
/third_party/uboot/u-boot-2020.01/tools/concurrencytest/
Dconcurrencytest.py51 def do_fork(suite): argument
60 test_blocks = partition_tests(suite, concurrency_num)
62 suite._tests[:] = []
102 def partition_tests(suite, count): argument
110 tests = iterate_tests(suite)
135 suite = unittest.TestLoader().loadTestsFromTestCase(SampleTestCase) variable
139 runner.run(suite)
142 suite = unittest.TestLoader().loadTestsFromTestCase(SampleTestCase) variable
143 concurrent_suite = ConcurrentTestSuite(suite, fork_for_tests(4))
/third_party/glib/tests/refcount/
Dmeson.build3 'objects2' : {'suite' : ['slow']},
5 'properties2' : {'suite' : ['slow']},
6 'properties3' : {'suite' : ['slow']},
55 suite = ['refcount'] + extra_args.get('suite', []) variable
56 timeout = suite.contains('slow') ? test_timeout_slow : test_timeout
59 test(test_name, exe, env : test_env, timeout : timeout, suite : suite)
/third_party/node/deps/npm/node_modules/ansi-styles/
Dindex.js136 const suite = colorConvert[key];
142 if ('ansi16' in suite) {
143 styles.color.ansi[key] = wrapAnsi16(suite.ansi16, 0);
144 styles.bgColor.ansi[key] = wrapAnsi16(suite.ansi16, 10);
147 if ('ansi256' in suite) {
148 styles.color.ansi256[key] = wrapAnsi256(suite.ansi256, 0);
149 styles.bgColor.ansi256[key] = wrapAnsi256(suite.ansi256, 10);
152 if ('rgb' in suite) {
153 styles.color.ansi16m[key] = wrapAnsi16m(suite.rgb, 0);
154 styles.bgColor.ansi16m[key] = wrapAnsi16m(suite.rgb, 10);
/third_party/boost/libs/test/doc/examples/
Dexample11.output4 Entering test suite "Master Test Suite"
5 Entering test suite "test_suite1"
10 Leaving test suite "test_suite1"
11 Entering test suite "test_suite2"
16 Leaving test suite "test_suite2"
17 Leaving test suite "Master Test Suite"
/third_party/ffmpeg/tests/fate/
Ddca.mak26 fate-dca-$(1): CMD = framemd5 -i $(TARGET_SAMPLES)/dts/dcadec-suite/$(1).dtshd -c:a pcm_$(2)
27 … = framemd5 -request_channel_layout 0x3 -i $(TARGET_SAMPLES)/dts/dcadec-suite/$(1).dtshd -c:a pc…
28 … = framemd5 -request_channel_layout 0x60f -i $(TARGET_SAMPLES)/dts/dcadec-suite/$(1).dtshd -c:a pc…
33 fate-dca-$(1): CMD = ffmpeg -i $(TARGET_SAMPLES)/dts/dcadec-suite/$(1).dtshd -f f32le -
34 fate-dca-$(1): REF = $(SAMPLES)/dts/dcadec-suite/$(1).f32
43 … CMD = ffmpeg -request_channel_layout 0x3 -i $(TARGET_SAMPLES)/dts/dcadec-suite/core_51_24_48_768_…
44 fate-dca-core_51_24_48_768_1-dmix_2: REF = $(SAMPLES)/dts/dcadec-suite/core_51_24_48_768_1-dmix_2.f…
47 … CMD = ffmpeg -request_channel_layout 0x3 -i $(TARGET_SAMPLES)/dts/dcadec-suite/x96_xxch_71_24_96_…
49 fate-dca-x96_xxch_71_24_96_3840-dmix_2: REF = $(SAMPLES)/dts/dcadec-suite/x96_xxch_71_24_96_3840-dm…
52 …MD = ffmpeg -request_channel_layout 0x60f -i $(TARGET_SAMPLES)/dts/dcadec-suite/x96_xxch_71_24_96_…
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/rsn_supp/
Dwpa_ie.c47 u32 suite; in wpa_gen_wpa_ie_wpa() local
59 suite = wpa_cipher_to_suite(WPA_PROTO_WPA, group_cipher); in wpa_gen_wpa_ie_wpa()
60 if (suite == 0) { in wpa_gen_wpa_ie_wpa()
65 RSN_SELECTOR_PUT(pos, suite); in wpa_gen_wpa_ie_wpa()
70 suite = wpa_cipher_to_suite(WPA_PROTO_WPA, pairwise_cipher); in wpa_gen_wpa_ie_wpa()
71 if (suite == 0 || in wpa_gen_wpa_ie_wpa()
78 RSN_SELECTOR_PUT(pos, suite); in wpa_gen_wpa_ie_wpa()
116 u32 suite; in wpa_gen_wpa_ie_rsn() local
131 suite = wpa_cipher_to_suite(WPA_PROTO_RSN, group_cipher); in wpa_gen_wpa_ie_rsn()
132 if (suite == 0) { in wpa_gen_wpa_ie_rsn()
[all …]

12345678910>>...52