Home
last modified time | relevance | path

Searched refs:tests (Results 1 – 25 of 1459) sorted by relevance

12345678910>>...59

/f-stack/freebsd/contrib/openzfs/
H A Dconfigure.ac238 tests/zfs-tests/tests/Makefile
239 tests/zfs-tests/tests/functional/Makefile
240 tests/zfs-tests/tests/functional/acl/Makefile
244 tests/zfs-tests/tests/functional/arc/Makefile
245 tests/zfs-tests/tests/functional/atime/Makefile
247 tests/zfs-tests/tests/functional/btree/Makefile
346 tests/zfs-tests/tests/functional/io/Makefile
405 tests/zfs-tests/tests/perf/Makefile
406 tests/zfs-tests/tests/perf/fio/Makefile
408 tests/zfs-tests/tests/perf/scripts/Makefile
[all …]
/f-stack/freebsd/contrib/openzfs/tests/runfiles/
H A Dsanity.run39 [tests/functional/arc]
43 [tests/functional/bootfs]
47 [tests/functional/cache]
51 [tests/functional/cachefile]
56 [tests/functional/casenorm]
415 [tests/functional/exec]
424 [tests/functional/grow]
435 [tests/functional/hkdf]
473 [tests/functional/mmap]
554 [tests/functional/slog]
[all …]
H A Dcommon.run39 [tests/functional/arc]
44 [tests/functional/atime]
48 [tests/functional/bootfs]
54 [tests/functional/btree]
60 [tests/functional/cache]
71 [tests/functional/casenorm]
582 [tests/functional/exec]
595 [tests/functional/grow]
608 [tests/functional/hkdf]
617 [tests/functional/io]
[all …]
H A Dlinux.run25 [tests/functional/acl/posix:Linux]
33 [tests/functional/atime:Linux]
37 [tests/functional/chattr:Linux]
42 tests = ['run_edonr_test']
46 tests = ['zfs_003_neg']
85 tests = ['compress_004_pos']
117 [tests/functional/io:Linux]
118 tests = ['libaio']
121 [tests/functional/mmap:Linux]
125 [tests/functional/mmp:Linux]
[all …]
H A Dsunos.run25 [tests/functional/inuse:illumos]
30 [tests/functional/cli_root/zpool_add:illumos]
31 tests = ['zpool_add_005_pos']
34 [tests/functional/cli_root/zpool_create:illumos]
35 tests = ['zpool_create_016_pos']
38 [tests/functional/privilege]
39 tests = ['privilege_001_pos', 'privilege_002_pos']
42 [tests/functional/xattr:illumos]
43 tests = ['xattr_008_pos', 'xattr_009_neg', 'xattr_010_neg']
46 [tests/functional/zvol/zvol_misc:illumos]
[all …]
/f-stack/freebsd/contrib/libsodium/test/default/
H A Dpwhash_scrypt.c19 } tests[] = { in tv() local
101 tests[i].passwd_hex, strlen(tests[i].passwd_hex), NULL, in tv()
108 tests[i].opslimit, tests[i].memlimit) != 0) { in tv()
113 } while (++i < (sizeof tests) / (sizeof tests[0])); in tv()
126 } tests[] = { in tv2() local
157 tests[i].opslimit, tests[i].memlimit) != 0) { in tv2()
162 } while (++i < (sizeof tests) / (sizeof tests[0])); in tv2()
171 } tests[] = { in tv3() local
284 memcpy(out, tests[i].out, strlen(tests[i].out) + 1U); in tv3()
287 memcpy(passwd, tests[i].passwd, strlen(tests[i].passwd) + 1U); in tv3()
[all …]
H A Dpwhash_argon2i.c20 } tests[] = { in tv() local
89 tests[i].passwd_hex, strlen(tests[i].passwd_hex), NULL, in tv()
95 tests[i].opslimit, tests[i].memlimit, in tv()
103 } while (++i < (sizeof tests) / (sizeof tests[0])); in tv()
117 } tests[] = { in tv2() local
147 tests[i].opslimit, tests[i].memlimit, in tv2()
154 } while (++i < (sizeof tests) / (sizeof tests[0])); in tv2()
194 } tests[] = { in tv3() local
216 memcpy(out, tests[i].out, strlen(tests[i].out) + 1U); in tv3()
219 memcpy(passwd, tests[i].passwd, strlen(tests[i].passwd) + 1U); in tv3()
[all …]
H A Daead_aes256gcm.c12 } tests[] = { variable
3108 tests[i].key_hex, strlen(tests[i].key_hex), in tv()
3112 tests[i].nonce_hex, strlen(tests[i].nonce_hex), in tv()
3114 message_len = strlen(tests[i].message_hex) / 2; in tv()
3117 tests[i].message_hex, strlen(tests[i].message_hex), in tv()
3119 ad_len = strlen(tests[i].ad_hex) / 2; in tv()
3122 tests[i].ad_hex, strlen(tests[i].ad_hex), in tv()
3127 assert(strlen(tests[i].ciphertext_hex) == 2 * message_len); in tv()
3129 tests[i].ciphertext_hex, strlen(tests[i].ciphertext_hex), in tv()
3133 tests[i].mac_hex, strlen(tests[i].mac_hex), in tv()
[all …]
H A Dpwhash_argon2id.c20 } tests[] = { in tv() local
89 tests[i].passwd_hex, strlen(tests[i].passwd_hex), NULL, in tv()
95 tests[i].opslimit, tests[i].memlimit, in tv()
103 } while (++i < (sizeof tests) / (sizeof tests[0])); in tv()
117 } tests[] = { in tv2() local
147 tests[i].opslimit, tests[i].memlimit, in tv2()
154 } while (++i < (sizeof tests) / (sizeof tests[0])); in tv2()
190 } tests[] = { in tv3() local
212 memcpy(out, tests[i].out, strlen(tests[i].out) + 1U); in tv3()
215 memcpy(passwd, tests[i].passwd, strlen(tests[i].passwd) + 1U); in tv3()
[all …]
H A Dgenerichash.c11 } tests[] = { variable
1308 assert(strlen(tests[i].key_hex) == 2 * crypto_generichash_KEYBYTES_MAX); in tv()
1310 tests[i].key_hex, strlen(tests[i].key_hex), in tv()
1312 assert(strlen(tests[i].out_hex) == 2 * crypto_generichash_BYTES_MAX); in tv()
1314 tests[i].out_hex, strlen(tests[i].out_hex), in tv()
1316 in_len = strlen(tests[i].in_hex) / 2; in tv()
1318 sodium_hex2bin(in, in_len, tests[i].in_hex, strlen(tests[i].in_hex), in tv()
1327 } while (++i < (sizeof tests) / (sizeof tests[0])); in tv()
H A Dchacha20.c11 } tests[] in tv() local
33 sodium_hex2bin((unsigned char *)key, sizeof key, tests[i].key_hex, in tv()
34 strlen(tests[i].key_hex), NULL, NULL, NULL); in tv()
35 sodium_hex2bin(nonce, sizeof nonce, tests[i].nonce_hex, in tv()
36 strlen(tests[i].nonce_hex), NULL, NULL, NULL); in tv()
48 } while (++i < (sizeof tests) / (sizeof tests[0])); in tv()
87 } tests[] in tv_ietf() local
121 strlen(tests[i].key_hex), ": ", NULL, NULL); in tv_ietf()
122 sodium_hex2bin(nonce, sizeof nonce, tests[i].nonce_hex, in tv_ietf()
123 strlen(tests[i].nonce_hex), ": ", NULL, NULL); in tv_ietf()
[all …]
/f-stack/freebsd/contrib/zstd/
H A DTESTING.md5 short, medium, and long tests.
10 They consist of the following tests:
13 - `tests/playTests.sh` on x86_64, without the tests on long data (CLI tests)
14 - Small tests (`tests/legacy.c`, `tests/longmatch.c`) on x64_64
19 They consist of the following tests:
22 - `tests/playTests.sh --test-large-data`
23 - Fuzzer tests: `tests/fuzzer.c`, `tests/zstreamtest.c`, and `tests/decodecorpus.c`
26 - Fuzzer tests (see above) on ARM, AArch64, PowerPC, and PowerPC64
30 Long tests run on all commits to `release` branch,
33 They consist of the following tests:
[all …]
/f-stack/freebsd/contrib/openzfs/scripts/
H A Dzfs2zol-patch.sed17 s:usr/src/test/zfs-tests/include:tests/zfs-tests/include:g
18 s:usr/src/test/zfs-tests/runfiles:tests/runfiles:g
19 s:usr/src/test/zfs-tests/tests/functional:tests/zfs-tests/tests/functional:g
20 s:usr/src/test/zfs-tests/tests/perf:tests/zfs-tests/tests/perf:g
21 s:usr/src/test/test-runner/cmd/run.py:tests/test-runner/cmd/test-runner.py:g
/f-stack/dpdk/app/test/
H A Dtest_ipfrag.c174 } tests[] = { in test_ip_frag() local
200 if (tests[i].ipv == 4) { in test_ip_frag()
202 tests[i].pkt_size, in test_ip_frag()
203 tests[i].set_df, in test_ip_frag()
204 tests[i].ttl, in test_ip_frag()
205 tests[i].proto, in test_ip_frag()
209 tests[i].pkt_size, in test_ip_frag()
210 tests[i].ttl, in test_ip_frag()
211 tests[i].proto, in test_ip_frag()
215 if (tests[i].ipv == 4) in test_ip_frag()
[all …]
/f-stack/freebsd/contrib/openzfs/tests/
H A DREADME.md45 $ /usr/share/zfs/zfs-tests.sh
54 $ ./scripts/zfs-tests.sh
56 The following zfs-tests.sh options are supported:
110 $ /usr/share/zfs/zfs-tests.sh -r my_tests.run
112 Otherwise user can set needed tags to run only specific tests.
122 $ /usr/share/zfs/zfs-tests.sh -v -d /tmp/test
127 STF_SUITE: /usr/share/zfs/zfs-tests
141 -T functional -i /usr/share/zfs/zfs-tests -I 1
142 Test: /usr/share/zfs/zfs-tests/tests/functional/arc/setup (run as root) [00:00] [PASS]
143 ...more than 1100 additional tests...
[all …]
/f-stack/dpdk/doc/guides/prog_guide/
H A Dmeson_ut.rst17 * Fast tests.
18 * Performance tests.
19 * Driver tests.
23 These tests can be run using the argument to ``meson test`` as
28 $ meson test -C <build path> --suite DPDK:fast-tests
33 $ meson test --suite DPDK:fast-tests
38 $ meson test --suite fast-tests
40 The meson command to list all available tests::
61 Below are a few possible causes why tests may be skipped:
66 #. Not enough processing cores. Some tests are skipped on machines with 2 or 4 cores.
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cp_files/
H A DMakefile.am3 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cp_files
10 pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cp_files
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/ctime/
H A DMakefile.am3 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/ctime
10 pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/ctime
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/suid/
H A DMakefile.am3 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/suid
13 pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/suid
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/libzfs/
H A DMakefile.am3 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/libzfs
5 pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/libzfs
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/hkdf/
H A DMakefile.am3 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/hkdf
10 pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/hkdf
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/truncate/
H A DMakefile.am3 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/truncate
15 pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/truncate
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_diff/
H A DMakefile.am3 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cli_root/zfs_diff
14 pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cli_root/zfs_diff
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/tmpfile/
H A DMakefile.am3 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/tmpfile
9 pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/tmpfile
/f-stack/freebsd/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_events/
H A DMakefile.am3 pkgdatadir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cli_root/zpool_events
4 pkgexecdir = $(datadir)/@PACKAGE@/zfs-tests/tests/functional/cli_root/zpool_events

12345678910>>...59