Home
last modified time | relevance | path

Searched refs:suite (Results 76 - 100 of 210) sorted by relevance

123456789

/kernel/linux/linux-5.10/lib/kunit/
H A Dkunit-test.c418 struct kunit_suite *suite = &kunit_log_test_suite; in kunit_log_test() local
422 kunit_log(KERN_INFO, suite, "add to suite log."); in kunit_log_test()
423 kunit_log(KERN_INFO, suite, "along with this."); in kunit_log_test()
431 strstr(suite->log, "add to suite log.")); in kunit_log_test()
433 strstr(suite->log, "along with this.")); in kunit_log_test()
436 KUNIT_EXPECT_PTR_EQ(test, suite->log, (char *)NULL); in kunit_log_test()
/third_party/ffmpeg/libavformat/
H A Dsrtp.c65 int ff_srtp_set_crypto(struct SRTPContext *s, const char *suite, in ff_srtp_set_crypto() argument
73 if (!strcmp(suite, "AES_CM_128_HMAC_SHA1_80") || in ff_srtp_set_crypto()
74 !strcmp(suite, "SRTP_AES128_CM_HMAC_SHA1_80")) { in ff_srtp_set_crypto()
76 } else if (!strcmp(suite, "AES_CM_128_HMAC_SHA1_32")) { in ff_srtp_set_crypto()
78 } else if (!strcmp(suite, "SRTP_AES128_CM_HMAC_SHA1_32")) { in ff_srtp_set_crypto()
83 av_log(NULL, AV_LOG_WARNING, "SRTP Crypto suite %s not supported\n", in ff_srtp_set_crypto()
84 suite); in ff_srtp_set_crypto()
/third_party/node/deps/v8/tools/testrunner/local/
H A Dtestsuite.py75 suite and name, `name` parameter should be unique within one suite.
84 """Base class for loading TestSuite tests after applying test suite
87 def __init__(self, suite, test_class, test_config, test_root):
88 self.suite = suite
118 def _create_test(self, path, suite, **kwargs):
121 suite, path, self._path_to_name(path), self.test_config, **kwargs)
131 case = self._create_test(testname, self.suite)
311 """Returns Combiner subclass. None if suite does
[all...]
/third_party/libcoap/tests/
H A Dtest_options.c936 CU_pSuite suite[5]; in t_init_option_tests() local
938 suite[0] = CU_add_suite("option parser", NULL, NULL); in t_init_option_tests()
939 if (!suite[0]) { /* signal error */ in t_init_option_tests()
940 fprintf(stderr, "W: cannot add option parser test suite (%s)\n", in t_init_option_tests()
947 if (!CU_add_test(suite[0], s, t_parse_option##n)) { \ in t_init_option_tests()
967 if ((suite[1] = CU_add_suite("option encoder", NULL, NULL))) { in t_init_option_tests()
969 if (!CU_add_test(suite[1], s, t_encode_option##n)) { \ in t_init_option_tests()
985 fprintf(stderr, "W: cannot add option encoder test suite (%s)\n", in t_init_option_tests()
989 if ((suite[2] = CU_add_suite("option accessors", NULL, NULL))) { in t_init_option_tests()
991 if (!CU_add_test(suite[ in t_init_option_tests()
[all...]
/third_party/node/deps/v8/tools/testrunner/local/fake_testsuite/
H A Dtestcfg.py17 fast = self._create_test("fast", self.suite)
18 slow = self._create_test("slow", self.suite)
/kernel/linux/linux-6.6/include/kunit/
H A Dtest.h56 * enum kunit_status - Type of result for a test or test suite
57 * @KUNIT_SUCCESS: Denotes the test suite has not failed nor been skipped
84 /* Holds attributes for each test case and suite */
101 * with a &struct kunit_suite and will be run after the suite's init
102 * function and followed by the suite's exit function.
226 * @suite_init: called once per test suite before the test cases.
227 * @suite_exit: called once per test suite after all test cases.
231 * @attr: the attributes associated with the test suite
246 int (*suite_init)(struct kunit_suite *suite);
247 void (*suite_exit)(struct kunit_suite *suite);
[all...]
/third_party/skia/third_party/externals/angle2/infra/specs/
H A Dgenerate_test_spec_json.py119 for suite in angle_generator.test_suites.values():
120 if isinstance(suite, list):
124 for test in suite.values():
/third_party/ffmpeg/tests/fate/
H A Dpcm.mak11 fate-pcm_s16be-stereo: CMD = md5 -i $(TARGET_SAMPLES)/qt-surge-suite/surge-2-16-B-twos.mov -f s16le
14 fate-pcm_s16le-stereo: CMD = md5 -i $(TARGET_SAMPLES)/qt-surge-suite/surge-2-16-L-sowt.mov -f s16le
17 fate-pcm_u8-mono: CMD = md5 -i $(TARGET_SAMPLES)/qt-surge-suite/surge-1-8-raw.mov -f s16le -af aresample
20 fate-pcm_u8-stereo: CMD = md5 -i $(TARGET_SAMPLES)/qt-surge-suite/surge-2-8-raw.mov -f s16le -af aresample
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
H A DExtensionRegistryFactoryTest.java212 /** Defines a suite of tests which the JUnit3 runner retrieves by reflection. */
213 public static Test suite() { in suite() method in ExtensionRegistryFactoryTest
214 TestSuite suite = new TestSuite(); in suite()
216 suite.addTest(TestSuite.createTest(ExtensionRegistryFactoryTest.class, method.getName())); in suite()
218 return suite; in suite()
/kernel/linux/linux-6.6/lib/kunit/
H A Dkunit-test.c535 struct kunit_suite suite; in kunit_log_test() local
537 suite.log = kunit_kzalloc(test, KUNIT_LOG_SIZE, GFP_KERNEL); in kunit_log_test()
538 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, suite.log); in kunit_log_test()
542 kunit_log(KERN_INFO, &suite, "add to suite log."); in kunit_log_test()
543 kunit_log(KERN_INFO, &suite, "along with this."); in kunit_log_test()
551 strstr(suite.log, "add to suite log.")); in kunit_log_test()
553 strstr(suite.log, "along with this.")); in kunit_log_test()
H A Dexecutor.c100 /* Create a copy of suite with only tests that match test_glob. */
102 kunit_filter_glob_tests(const struct kunit_suite *const suite, const char *test_glob) in kunit_filter_glob_tests() argument
108 kunit_suite_for_each_test_case(suite, test_case) { in kunit_filter_glob_tests()
116 copy = kmemdup(suite, sizeof(*copy), GFP_KERNEL); in kunit_filter_glob_tests()
127 kunit_suite_for_each_test_case(suite, test_case) { in kunit_filter_glob_tests()
211 /* Free previous copy of suite */ in kunit_filter_suites()
285 /* Print suite name and suite attributes */ in kunit_exec_list_tests()
290 /* Print test case name and attributes in suite */ in kunit_exec_list_tests()
347 if (filter_glob_param || filter_param) { /* a copy was made of each suite */ in kunit_run_all_tests()
[all...]
/third_party/python/Lib/unittest/
H A Dloader.py13 from . import case, suite, util namespace
74 suiteClass = suite.TestSuite
85 """Return a suite of all test cases contained in testCaseClass"""
86 if issubclass(testCaseClass, suite.TestSuite):
99 """Return a suite of all test cases contained in the given module"""
139 """Return a suite of all test cases given a string specifier.
202 elif isinstance(obj, suite.TestSuite):
206 if isinstance(test, suite.TestSuite):
217 """Return a suite of all test cases found using the given sequence
489 suiteClass=suite
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/tls/
H A Dtlsv1_common.c103 * tls_get_cipher_suite - Get TLS cipher suite
104 * @suite: Cipher suite identifier
107 const struct tls_cipher_suite * tls_get_cipher_suite(u16 suite) in tls_get_cipher_suite() argument
111 if (tls_cipher_suites[i].suite == suite) in tls_get_cipher_suite()
129 const struct tls_cipher_suite *suite; in tls_server_key_exchange_allowed() local
132 suite = tls_get_cipher_suite(cipher); in tls_server_key_exchange_allowed()
133 if (suite == NULL) in tls_server_key_exchange_allowed()
136 switch (suite in tls_server_key_exchange_allowed()
[all...]
H A Dtlsv1_server_read.c30 static int testing_cipher_suite_filter(struct tlsv1_server *conn, u16 suite) in testing_cipher_suite_filter() argument
37 suite != TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 && in testing_cipher_suite_filter()
38 suite != TLS_DHE_RSA_WITH_AES_256_CBC_SHA && in testing_cipher_suite_filter()
39 suite != TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 && in testing_cipher_suite_filter()
40 suite != TLS_DHE_RSA_WITH_AES_128_CBC_SHA && in testing_cipher_suite_filter()
41 suite != TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA) in testing_cipher_suite_filter()
267 tlsv1_server_log(conn, "No supported cipher suite available"); in tls_process_client_hello()
814 const struct tls_cipher_suite *suite; in tls_process_client_key_exchange() local
862 suite = tls_get_cipher_suite(conn->rl.cipher_suite); in tls_process_client_key_exchange()
863 if (suite in tls_process_client_key_exchange()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/tls/
H A Dtlsv1_common.c103 * tls_get_cipher_suite - Get TLS cipher suite
104 * @suite: Cipher suite identifier
107 const struct tls_cipher_suite * tls_get_cipher_suite(u16 suite) in tls_get_cipher_suite() argument
111 if (tls_cipher_suites[i].suite == suite) in tls_get_cipher_suite()
129 const struct tls_cipher_suite *suite; in tls_server_key_exchange_allowed() local
132 suite = tls_get_cipher_suite(cipher); in tls_server_key_exchange_allowed()
133 if (suite == NULL) in tls_server_key_exchange_allowed()
136 switch (suite in tls_server_key_exchange_allowed()
[all...]
H A Dtlsv1_server_read.c30 static int testing_cipher_suite_filter(struct tlsv1_server *conn, u16 suite) in testing_cipher_suite_filter() argument
37 suite != TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 && in testing_cipher_suite_filter()
38 suite != TLS_DHE_RSA_WITH_AES_256_CBC_SHA && in testing_cipher_suite_filter()
39 suite != TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 && in testing_cipher_suite_filter()
40 suite != TLS_DHE_RSA_WITH_AES_128_CBC_SHA && in testing_cipher_suite_filter()
41 suite != TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA) in testing_cipher_suite_filter()
267 tlsv1_server_log(conn, "No supported cipher suite available"); in tls_process_client_hello()
814 const struct tls_cipher_suite *suite; in tls_process_client_key_exchange() local
862 suite = tls_get_cipher_suite(conn->rl.cipher_suite); in tls_process_client_key_exchange()
863 if (suite in tls_process_client_key_exchange()
[all...]
/third_party/selinux/libsepol/tests/
H A Dtest-cond.c89 int cond_add_tests(CU_pSuite suite) in cond_add_tests() argument
91 if (NULL == CU_add_test(suite, "cond_expr_equal", test_cond_expr_equal)) { in cond_add_tests()
H A Dtest-deps.c295 int deps_add_tests(CU_pSuite suite) in deps_add_tests() argument
297 if (NULL == CU_add_test(suite, "deps_modreq_global", deps_modreq_global)) { in deps_add_tests()
301 if (NULL == CU_add_test(suite, "deps_modreq_opt", deps_modreq_opt)) { in deps_add_tests()
/third_party/node/deps/v8/third_party/test262-harness/src/
H A Dtest262.py231 def __init__(self, suite, name, full_path, strict_mode):
232 self.suite = suite
298 return '\n'.join([self.suite.GetInclude(include) for include in self.GetIncludeList()])
304 source = self.suite.GetInclude("sta.js") + \
305 self.suite.GetInclude("cth.js") + \
306 self.suite.GetInclude("assert.js")
310 self.suite.GetInclude("timer.js") + \
311 self.suite.GetInclude("doneprintHandle.js").replace('print', self.suite
[all...]
/third_party/python/Lib/lib2to3/
H A Dfixer_util.py274 if node.type == syms.suite and len(node.children) > 2:
282 ### The following functions are to find bindings in a suite
286 if node.type == syms.suite:
290 suite = Node(syms.suite, [node])
291 suite.parent = parent
292 return suite
383 # i+3 is the colon, i+4 is the suite
/third_party/node/deps/v8/tools/testrunner/testproc/
H A Dvariant.py67 key = test.suite.name
70 variants_gen = test.suite.get_variants_gen(self._variants)
H A Dfilter.py57 will be used with the exeption of the test-suite name as argument.
78 globs = self._globs.get(test.suite.name, [])
83 exact_matches = self._exact_matches.get(test.suite.name, {})
/third_party/libevdev/test/
H A Dtest-common.h39 #define add_test(suite, func) do { \
42 suite_add_tcase(suite, tc); \
/third_party/skia/third_party/externals/spirv-tools/test/tools/
H A Dspirv_test_framework.py250 for suite in self.tests:
251 print('SPIRV tool test suite: "{suite}"'.format(suite=suite))
252 for x in self.tests[suite]:
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/
H A Dspirv_test_framework.py250 for suite in self.tests:
251 print('SPIRV tool test suite: "{suite}"'.format(suite=suite))
252 for x in self.tests[suite]:

Completed in 17 milliseconds

123456789