Home
last modified time | relevance | path

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

12345678910>>...22

/netbsd/external/bsd/kyua-cli/dist/engine/
H A Dkyuafile_test.cpp59 ATF_REQUIRE_EQ(fs::path("."), suite.source_root()); in ATF_TEST_CASE_BODY()
60 ATF_REQUIRE_EQ(fs::path("."), suite.build_root()); in ATF_TEST_CASE_BODY()
61 ATF_REQUIRE_EQ(0, suite.test_programs().size()); in ATF_TEST_CASE_BODY()
100 ATF_REQUIRE_EQ(fs::path("."), suite.source_root()); in ATF_TEST_CASE_BODY()
101 ATF_REQUIRE_EQ(fs::path("."), suite.build_root()); in ATF_TEST_CASE_BODY()
102 ATF_REQUIRE_EQ(6, suite.test_programs().size()); in ATF_TEST_CASE_BODY()
147 ATF_REQUIRE_EQ(2, suite.test_programs().size()); in ATF_TEST_CASE_BODY()
192 ATF_REQUIRE_EQ(fs::path("."), suite.build_root()); in ATF_TEST_CASE_BODY()
193 ATF_REQUIRE_EQ(2, suite.test_programs().size()); in ATF_TEST_CASE_BODY()
229 ATF_REQUIRE_EQ(3, suite.test_programs().size()); in ATF_TEST_CASE_BODY()
[all …]
/netbsd/external/mit/expat/dist/tests/
H A Dminicheck.c52 if (suite != NULL) { in suite_create()
53 suite->name = name; in suite_create()
55 return suite; in suite_create()
69 assert(suite != NULL); in suite_add_tcase()
74 suite->tests = tc; in suite_add_tcase()
112 if (! suite) { in suite_free()
121 free(suite); in suite_free()
128 runner->suite = suite; in srunner_create()
164 Suite *suite; in srunner_run_all() local
167 suite = runner->suite; in srunner_run_all()
[all …]
H A Dminicheck.h78 Suite *suite; member
109 void suite_add_tcase(Suite *suite, TCase *tc);
113 SRunner *srunner_create(Suite *suite);
/netbsd/external/gpl3/autoconf/dist/tests/
H A Dautotest.at181 ## Empty test suite. ##
187 [[AT_INIT([empty test suite])
191 [[AT_INIT([empty test suite])
276 [[AT_INIT([[suite, take one]])
292 [[AT_INIT([[suite]])
1550 TESTSUITE = ./micro-suite
1618 AT_CHECK([if test -f micro-suite.dir/7/micro-suite.log; then ]dnl
1758 AT_CHECK_AT_PREP([suite],
1827 AT_CHECK_AT_PREP([suite],
1859 AT_CHECK_AT_PREP([suite],
[all …]
/netbsd/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/unit/
H A D__init__.py15 def load_tests(loader, suite, _): argument
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
/netbsd/external/apache2/llvm/dist/llvm/docs/
H A DTestSuiteGuide.md1 test-suite Guide
30 % git clone https://github.com/llvm/llvm-test-suite.git test-suite
38 % mkdir test-suite-build
39 % cd test-suite-build
42 ../test-suite
139 % cd test-suite-build
291 …acing (or linking) them into the `test-suite/test-suite-externals/xxx` directory (example: `test-s…
305 You can build custom suites using the test-suite infrastructure. A custom suite
311 % cmake -DTEST_SUITE_SUBDIRS=path/to/my/benchmark-suite ../test-suite
328 ../test-suite
[all …]
H A DTestSuiteMakefileGuide.rst2 test-suite Makefile Guide (deprecated)
13 the test suite creates temporary files during execution.
15 To run the test suite, you need to use the following steps:
17 #. Check out the ``test-suite`` module with:
21 % git clone https://github.com/llvm/llvm-test-suite.git test-suite
41 You must also tell the configure machinery that the test suite is
51 #. You can now run the test suite from your build tree as follows:
55 % cd $LLVM_OBJ_ROOT/projects/test-suite
65 In order to run the External tests in the ``test-suite`` module, you
138 Writing Custom Tests for the test-suite
[all …]
H A DReleaseProcess.rst61 directory, and that's the one you should use for the test-suite and other
109 .. _test-suite:
119 test-suite
123 Link that directory to an easier location and run the test-suite.
132 --test-suite ~/devel/llvm/test/test-suite \
137 candidate. You don't need to fix all the bugs in the test-suite, since they're
171 run the test-suite.
196 test-suite the same way.
227 wait until the test-suite run is finished.
229 * Bugs in the test suite or unimportant check-all tests can be fixed in between
/netbsd/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A DTestTimes.py4 def read_test_times(suite): argument
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
H A DTest.py222 def __init__(self, suite, path_in_suite, config, file_path = None): argument
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)
313 triple = getattr(self.suite.config, 'target_triple', "")
386 triple = getattr(self.suite.config, 'target_triple', "")
H A Dreports.py12 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): argument
106 name = suite.config.name.replace('.', '-')
H A Dmain.py147 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)
/netbsd/external/bsd/wpa/dist/src/rsn_supp/
H A Dwpa_ie.c47 u32 suite; in wpa_gen_wpa_ie_wpa() local
60 if (suite == 0) { in wpa_gen_wpa_ie_wpa()
65 RSN_SELECTOR_PUT(pos, suite); 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
132 if (suite == 0) { in wpa_gen_wpa_ie_rsn()
143 if (suite == 0 || in wpa_gen_wpa_ie_rsn()
269 u32 suite; in wpa_gen_wpa_ie_osen() local
284 if (suite == 0) { in wpa_gen_wpa_ie_osen()
[all …]
/netbsd/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/
H A D__init__.py12 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
/netbsd/external/apache2/llvm/dist/llvm/utils/release/
H A Dexport.sh51 if [ ! -d test-suite-$release$rc.src ]
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 -
61 -cJf test-suite-$release$rc.src.tar.xz test-suite-$release$rc.src
/netbsd/external/apache2/llvm/dist/clang/tools/scan-build-py/tests/functional/cases/
H A D__init__.py11 def load_tests(loader, suite, pattern): argument
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
/netbsd/crypto/external/bsd/openssl/dist/test/
H A DREADME-external.md8 Python PYCA/Cryptography test suite
11 This python test suite runs cryptographic tests with a local OpenSSL build as
34 krb5 test suite
37 Much like the PYCA/Cryptography test suite, this builds and runs the krb5
56 krb5's tests will then be run as part of the rest of the suite, or can be
64 krb5 will automatically adapt its test suite to account for the configuration
68 GOST engine test suite
71 Much like the PYCA/Cryptography test suite, this builds and runs the GOST engine
85 GOST engine tests will then be run as part of the rest of the suite, or can be
/netbsd/external/gpl2/gmake/dist/tests/
H A DREADME1 The test suite was originally written by Steve McGee and Chris Arthur.
6 This entire test suite, including all test files, are copyright and
27 The test suite requires Perl. These days, you should have at least Perl
32 The test suite assumes that the first "diff" it finds on your PATH is
35 To run the test suite on a UNIX system, use "perl ./run_make_tests"
38 To run the test suite on Windows NT or DOS systems, use
48 Tests cannot end with a "~" character, as the test suite will ignore any
52 filesystems. You can use mkshadow to create a copy of the test suite in
72 other possible options for the test suite.
78 The test suite has a number of problems which should be addressed. One
[all …]
H A Dmkshadow38 suite=`pwd | sed 's%^/tmp_mnt%%'`
39 name=`basename "$suite"`
48 ln -s "$suite" .testdir
/netbsd/crypto/external/bsd/openssl.old/dist/test/
H A DREADME.external10 The BoringSSL test suite
21 BoringSSL repository. Later commits may or may not pass the test suite:
44 Note that the test suite may change directory while running so the path provided
75 Python PYCA/Cryptography test suite
78 This python test suite runs cryptographic tests with a local OpenSSL build as
102 krb5 test suite
105 Much like the PYCA/Cryptography test suite, this builds and runs the krb5
124 krb5's tests will then be run as part of the rest of the suite, or can be
132 krb5 will automatically adapt its test suite to account for the configuration
/netbsd/external/bsd/wpa/dist/src/tls/
H A Dtlsv1_record.c33 const struct tls_cipher_suite *suite; in tlsv1_record_set_cipher_suite() local
40 suite = tls_get_cipher_suite(cipher_suite); in tlsv1_record_set_cipher_suite()
41 if (suite == NULL) in tlsv1_record_set_cipher_suite()
44 if (suite->hash == TLS_HASH_MD5) { in tlsv1_record_set_cipher_suite()
47 } else if (suite->hash == TLS_HASH_SHA) { in tlsv1_record_set_cipher_suite()
50 } else if (suite->hash == TLS_HASH_SHA256) { in tlsv1_record_set_cipher_suite()
55 data = tls_get_cipher_data(suite->cipher); in tlsv1_record_set_cipher_suite()
/netbsd/external/lgpl3/gmp/dist/tests/devel/
H A DREADME3 This file is part of the GNU MP Library test suite.
5 The GNU MP Library test suite is free software; you can redistribute it
10 The GNU MP Library test suite is distributed in the hope that it will be
16 the GNU MP Library test suite. If not, see https://www.gnu.org/licenses/.
/netbsd/external/lgpl3/gmp/dist/tests/
H A Damd64call.asm5 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
/netbsd/external/bsd/flex/dist/
H A DNEWS47 ** test suite
53 if you are actively developing flex or its test suite.
119 ** test suite
158 ** test suite
210 *** The test suite has been reorganized and is now run with the parallel test suite harness from au…
450 ** more test suite cleanups; in particular, the test suite should run
470 ** one of the tests in the test suite broke the dist target
504 suite reports its results
533 ** a c++ test was added to the test suite
613 ** new tests in test suite: test-mem-{nr,r}, test-posix,
[all …]
/netbsd/external/bsd/flex/dist/tests/
H A DREADME1 This file describes the flex test suite.
5 The test suite is intended to be used by flex developers, i.e., anyone hacking
14 should re-run the test suite. Some of the tests may require certain
40 handling the automake test suite requirements. Hopefully your test
50 automake test suite harness.

12345678910>>...22