| /src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/ |
| __init__.py | 12 def suite(): function 14 suite = unittest.TestSuite() 15 suite.addTests(loader.loadTestsFromModule(tests.unit)) 16 suite.addTests(loader.loadTestsFromModule(tests.functional.cases)) 17 return suite
|
| /src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/unit/ |
| __init__.py | 15 def load_tests(loader, suite, _): 16 suite.addTests(loader.loadTestsFromModule(test_libear)) 17 suite.addTests(loader.loadTestsFromModule(test_compilation)) 18 suite.addTests(loader.loadTestsFromModule(test_clang)) 19 suite.addTests(loader.loadTestsFromModule(test_report)) 20 suite.addTests(loader.loadTestsFromModule(test_analyze)) 21 suite.addTests(loader.loadTestsFromModule(test_intercept)) 22 suite.addTests(loader.loadTestsFromModule(test_shell)) 23 return suite
|
| /src/external/bsd/kyua-cli/dist/engine/ |
| kyuafile_test.cpp | 57 const engine::kyuafile suite = engine::kyuafile::load( local 59 ATF_REQUIRE_EQ(fs::path("."), suite.source_root()); 60 ATF_REQUIRE_EQ(fs::path("."), suite.build_root()); 61 ATF_REQUIRE_EQ(0, suite.test_programs().size()); 71 "test_suite('one-suite')\n" 82 "atf_test_program{name='1st', test_suite='other-suite'}\n" 89 "atf_test_program{name='5th', test_suite='last-suite'}\n"); 98 const engine::kyuafile suite = engine::kyuafile::load( local 100 ATF_REQUIRE_EQ(fs::path("."), suite.source_root()); 101 ATF_REQUIRE_EQ(fs::path("."), suite.build_root()) 145 const engine::kyuafile suite = engine::kyuafile::load( local 189 const engine::kyuafile suite = engine::kyuafile::load( local 225 const engine::kyuafile suite = engine::kyuafile::load( local 266 const engine::kyuafile suite = engine::kyuafile::load( local [all...] |
| /src/external/gpl2/gmake/dist/tests/ |
| mkshadow | 34 echo "The current directory doesn't appear to contain the test suite!" 38 suite=`pwd | sed 's%^/tmp_mnt%%'` 39 name=`basename "$suite"` 48 ln -s "$suite" .testdir 56 echo "Shadow test suite created in \`$dest/$name'."
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/lit/ |
| TestTimes.py | 4 def read_test_times(suite): 6 test_times_file = os.path.join(suite.exec_root, '.lit_test_times.txt') 9 suite.source_root, '.lit_test_times.txt') 21 assert t.suite.test_times is None 24 if not t.suite.exec_root in times_by_suite: 25 times_by_suite[t.suite.exec_root] = read_test_times(t.suite) 31 times_by_suite[t.suite.exec_root]['/'.join(t.path_in_suite)] = t.result.elapsed
|
| TestingConfig.py | 7 TestingConfig - Information on the tests inside a suite. 153 # FIXME: This should really only be suite in test suite config 157 # FIXME: This should really only be suite in test suite config 164 """root attribute - The root configuration for the test suite."""
|
| reports.py | 10 # Suite names are not necessarily unique. Include object identity in sort 12 return (test.suite.name, id(test.suite), test.path_in_suite) 93 tests_by_suite = itertools.groupby(tests, lambda t: t.suite) 98 for suite, test_iter in tests_by_suite: 99 self._write_testsuite(file, suite, list(test_iter)) 102 def _write_testsuite(self, file, suite, tests): 106 name = suite.config.name.replace('.', '-')
|
| Test.py | 201 A test suite groups together a set of logically related tests. 208 # The test suite configuration. 222 def __init__(self, suite, path_in_suite, config, file_path = None): 223 self.suite = suite 258 if '/'.join(path_in_suite) in suite.test_times: 259 time = suite.test_times['/'.join(path_in_suite)] 288 return self.suite.config.name + ' :: ' + '/'.join(self.path_in_suite) 296 return self.suite.getSourcePath(self.path_in_suite) 299 return self.suite.getExecPath(self.path_in_suite [all...] |
| main.py | 61 lit_config.note(('The test suite configuration requested an individual' 147 tests_by_suite = itertools.groupby(tests, lambda t: t.suite) 149 for suite, test_iter in tests_by_suite: 151 print(' %s - %d tests' % (suite.name, test_count)) 152 print(' Source Root: %s' % suite.source_root) 153 print(' Exec Root : %s' % suite.exec_root) 154 features = ' '.join(sorted(suite.config.available_features)) 156 substitutions = sorted(suite.config.substitutions)
|
| /src/external/mit/expat/dist/tests/ |
| minicheck.c | 42 # undef NDEBUG /* because test suite relies on assert(...) at the moment */ 55 Suite * 57 Suite *suite = (Suite *)calloc(1, sizeof(Suite)); local 58 if (suite != NULL) { 59 suite->name = name; 61 return suite; 74 suite_add_tcase(Suite *suite, TCase *tc) 193 Suite *suite; local [all...] |
| minicheck.h | 100 typedef struct Suite Suite; 104 Suite *suite; member in struct:SRunner 109 struct Suite { 139 Suite *suite_create(const char *name); 141 void suite_add_tcase(Suite *suite, TCase *tc); 145 SRunner *srunner_create(Suite *suite); [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/release/ |
| export.sh | 51 if [ ! -d test-suite-$release$rc.src ] 53 echo "Fetching LLVM test-suite source ..." 54 mkdir -p test-suite-$release$rc.src 55 curl -L https://github.com/llvm/test-suite/archive/$tag.tar.gz | \ 56 tar -C test-suite-$release$rc.src --strip-components=1 -xzf - 58 echo "Creating tarball for test-suite ..." 61 -cJf test-suite-$release$rc.src.tar.xz test-suite-$release$rc.src
|
| /src/external/apache2/llvm/dist/llvm/utils/lit/tests/ |
| unparsed-requirements.py | 9 suite = TestSuite("suite", sys.argv[1], sys.argv[1], config) variable 11 test = Test(suite, ["test.py"], config)
|
| /src/external/bsd/wpa/dist/src/rsn_supp/ |
| wpa_ie.c | 47 u32 suite; local 59 suite = wpa_cipher_to_suite(WPA_PROTO_WPA, group_cipher); 60 if (suite == 0) { 65 RSN_SELECTOR_PUT(pos, suite); 70 suite = wpa_cipher_to_suite(WPA_PROTO_WPA, pairwise_cipher); 71 if (suite == 0 || 78 RSN_SELECTOR_PUT(pos, suite); 136 u32 suite; local 151 suite = wpa_cipher_to_suite(WPA_PROTO_RSN, group_cipher); 152 if (suite == 0) 284 u32 suite; local [all...] |
| /src/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/cases/ |
| __init__.py | 11 def load_tests(loader, suite, pattern): 13 suite.addTests(loader.loadTestsFromModule(test_from_cdb)) 15 suite.addTests(loader.loadTestsFromModule(test_from_cmd)) 17 suite.addTests(loader.loadTestsFromModule(test_create_cdb)) 19 suite.addTests(loader.loadTestsFromModule(test_exec_anatomy)) 20 return suite
|
| /src/crypto/external/apache2/openssl/dist/include/openssl/ |
| hpke.h | 55 /* strings for suite components */ 87 * Suite constants, use this like: 108 OSSL_HPKE_CTX *OSSL_HPKE_CTX_new(int mode, OSSL_HPKE_SUITE suite, int role, 121 int OSSL_HPKE_keygen(OSSL_HPKE_SUITE suite, 154 int OSSL_HPKE_suite_check(OSSL_HPKE_SUITE suite); 156 OSSL_HPKE_SUITE *suite, 160 int OSSL_HPKE_str2suite(const char *str, OSSL_HPKE_SUITE *suite); 161 size_t OSSL_HPKE_get_ciphertext_size(OSSL_HPKE_SUITE suite, size_t clearlen); 162 size_t OSSL_HPKE_get_public_encap_size(OSSL_HPKE_SUITE suite); 163 size_t OSSL_HPKE_get_recommended_ikmelen(OSSL_HPKE_SUITE suite); [all...] |
| /src/crypto/external/apache2/openssl/dist/crypto/hpke/ |
| hpke.c | 52 OSSL_HPKE_SUITE suite; /* suite */ member in struct:ossl_hpke_ctx_st 311 * @brief check if a suite is supported locally 312 * @param suite is the suite to check 315 static int hpke_suite_check(OSSL_HPKE_SUITE suite, 325 if ((kem_info_ = ossl_HPKE_KEM_INFO_find_id(suite.kem_id)) == NULL) 327 if ((kdf_info_ = ossl_HPKE_KDF_INFO_find_id(suite.kdf_id)) == NULL) 329 if ((aead_info_ = ossl_HPKE_AEAD_INFO_find_id(suite.aead_id)) == NULL) 343 * @brief randomly pick a suite [all...] |
| /src/crypto/external/apache2/openssl/dist/test/recipes/95-test_external_pkcs11_provider_data/ |
| pkcs11-provider.sh | 61 SUPPORT_ML_DSA=0 HARNESS_OSSL_PREFIX= meson test -C $PKCS11_PROVIDER_BUILDDIR --suite=kryoptic
|
| /src/external/bsd/wpa/dist/src/tls/ |
| tlsv1_record.c | 20 * tlsv1_record_set_cipher_suite - TLS record layer: Set cipher suite 22 * @cipher_suite: New cipher suite 25 * This function is used to prepare TLS record layer for cipher suite change. 33 const struct tls_cipher_suite *suite; local 36 wpa_printf(MSG_DEBUG, "TLSv1: Selected cipher suite: 0x%04x", 40 suite = tls_get_cipher_suite(cipher_suite); 41 if (suite == NULL) 44 if (suite->hash == TLS_HASH_MD5) { 47 } else if (suite->hash == TLS_HASH_SHA) { 50 } else if (suite->hash == TLS_HASH_SHA256) [all...] |
| tlsv1_common.c | 103 * 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) 111 if (tls_cipher_suites[i].suite == suite) 129 const struct tls_cipher_suite *suite; local 132 suite = tls_get_cipher_suite(cipher); 133 if (suite == NULL) 136 switch (suite->key_exchange) [all...] |
| /src/external/lgpl3/gmp/dist/tests/ |
| arm32call.asm | 6 dnl This file is part of the GNU MP Library test suite. 8 dnl The GNU MP Library test suite is free software; you can redistribute it 13 dnl The GNU MP Library test suite is distributed in the hope that it will be 19 dnl with the GNU MP Library test suite. If not, see
|
| amd64call.asm | 5 dnl This file is part of the GNU MP Library test suite. 7 dnl The GNU MP Library test suite is free software; you can redistribute it 12 dnl The GNU MP Library test suite is distributed in the hope that it will be 18 dnl with the GNU MP Library test suite. If not, see
|
| x86call.asm | 5 dnl This file is part of the GNU MP Library test suite. 7 dnl The GNU MP Library test suite is free software; you can redistribute it 12 dnl The GNU MP Library test suite is distributed in the hope that it will be 18 dnl with the GNU MP Library test suite. If not, see
|
| /src/external/bsd/wpa/dist/src/ap/ |
| wpa_auth_ie.c | 33 u32 suite; local 41 suite = wpa_cipher_to_suite(WPA_PROTO_WPA, conf->wpa_group); 42 if (suite == 0) { 47 RSN_SELECTOR_PUT(pos, suite); 128 u32 suite; local 135 suite = wpa_cipher_to_suite(WPA_PROTO_RSN, conf->wpa_group); 136 if (suite == 0) { 141 RSN_SELECTOR_PUT(pos, suite); 357 /* Management Group Cipher Suite */ 393 /* Management Group Cipher Suite */ 1221 u32 cipher, suite, selector, mask; local [all...] |
| /src/external/bsd/kyua-cli/dist/integration/ |
| cmd_list_test.sh | 133 kyua: E: Program name '/a/b' must be relative to the test suite, not absolute. 174 kyua: E: Program name '/foo' must be relative to the test suite, not absolute. 366 test_suite("integration-suite-1") 377 test_suite("integration-suite-2") 383 simple_all_pass:pass (integration-suite-1) 384 simple_all_pass:skip (integration-suite-1) 385 i_am_plain:main (integration-suite-1) 387 subdir/metadata:no_properties (integration-suite-2) 388 subdir/metadata:one_property (integration-suite-2) 390 subdir/metadata:many_properties (integration-suite-2 [all...] |