Searched refs:tests (Results 1 - 25 of 481) sorted by relevance

1234567891011>>

/freebsd-10-stable/crypto/openssh/regress/unittests/hostkeys/
H A Dtests.c1 /* $OpenBSD: tests.c,v 1.1 2015/02/16 22:18:34 djm Exp $ */
8 void tests(void);
12 tests(void) function
/freebsd-10-stable/tools/regression/doat/
H A Ddoat.c65 struct testcase tests[10]; /* no more than 10 tests */ member in struct:test
69 struct test *tests; variable in typeref:struct:test
108 tests = calloc(NUM_OF_TESTS + 1, sizeof(struct test));
109 if (tests == NULL) {
198 tests[0].syscall = SYS_faccessat;
199 tests[0].num_of_cases = 6;
200 tests[0].name = "faccessat";
201 tests[0].tests[
[all...]
/freebsd-10-stable/tools/regression/tmpfs/
H A DMakefile4 tests= t_mount macro
5 tests+= t_statvfs
6 tests+= t_mkdir
7 tests+= t_vnode_leak
8 tests+= t_setattr
9 tests+= t_rmdir
10 tests+= t_trail_slash
11 tests+= t_dots
12 tests+= t_create
13 tests
[all...]
/freebsd-10-stable/crypto/openssh/regress/unittests/kex/
H A Dtests.c1 /* $OpenBSD: tests.c,v 1.1 2015/01/15 23:41:29 markus Exp $ */
11 tests(void) function
/freebsd-10-stable/crypto/heimdal/lib/roken/
H A Dparse_bytes-test.c44 } tests[] = { variable in typeref:struct:testcase
63 for (i = 0; i < sizeof(tests)/sizeof(tests[0]); ++i) {
65 int val = parse_bytes (tests[i].str, tests[i].def_unit);
68 if (val != tests[i].val) {
70 tests[i].str,
71 tests[i].def_unit ? tests[i].def_unit : "none",
72 val, tests[
[all...]
H A Dparse_time-test.c45 } tests[] = { variable in typeref:struct:testcase
62 for (i = 0; i < sizeof(tests)/sizeof(tests[0]); ++i) {
65 sz = unparse_time(tests[i].val, NULL, 0);
66 if (sz != tests[i].size)
67 errx(1, "sz (%lu) != tests[%d].size (%lu)",
68 (unsigned long)sz, i, (unsigned long)tests[i].size);
70 for (buf_sz = 0; buf_sz < tests[i].size + 2; buf_sz++) {
74 sz = unparse_time(tests[i].val, buf, buf_sz);
75 if (sz != tests[
[all...]
H A Dstrpftime-test.c47 } tests[] = { variable in typeref:struct:testcase
235 for (i = 0; i < sizeof(tests)/sizeof(tests[0]); ++i) {
238 tm = gmtime (&tests[i].t);
240 for (j = 0; tests[i].vals[j].format != NULL; ++j) {
246 len = strftime (buf, sizeof(buf), tests[i].vals[j].format, tm);
249 tests[i].vals[j].format, (unsigned long)len,
254 if (strcmp (buf, tests[i].vals[j].result) != 0) {
256 tests[i].vals[j].format, buf,
257 tests[
[all...]
/freebsd-10-stable/lib/libc/tests/
H A DMakefile.netbsd-tests1 # $FreeBSD: stable/10/lib/libc/tests/Makefile.netbsd-tests 313488 2017-02-09 22:49:48Z ngie $
3 TESTSRC:= ${SRCTOP}/contrib/netbsd-tests/${RELDIR:C/libc\/tests/libc/}
5 TESTSDIR:= ${TESTSBASE}/${RELDIR:C/libc\/tests/libc/}
9 .include <netbsd-tests.test.mk>
/freebsd-10-stable/share/examples/tests/
H A DMakefile1 # $FreeBSD: stable/10/share/examples/tests/Makefile 313488 2017-02-09 22:49:48Z ngie $
5 SUBDIR= tests
7 .PATH: ${SRCTOP}/tests
/freebsd-10-stable/usr.bin/atf/
H A DMakefile28 SUBDIR= atf-sh tests
/freebsd-10-stable/usr.bin/tail/tests/
H A DMakefile1 # $FreeBSD: stable/10/usr.bin/tail/tests/Makefile 311895 2017-01-10 20:43:32Z asomers $
3 PACKAGE= tests
/freebsd-10-stable/usr.bin/compress/tests/
H A DMakefile1 # $FreeBSD: stable/10/usr.bin/compress/tests/Makefile 318591 2017-05-21 14:05:32Z jilles $
3 PACKAGE= tests
/freebsd-10-stable/tools/regression/lib/libc/regex/
H A DMakefile5 .PHONY: tests
6 tests:
/freebsd-10-stable/tools/regression/usr.bin/cc/
H A DMakefile6 .PHONY: tests
7 tests: ${TESTS}
/freebsd-10-stable/contrib/ntp/sntp/tests/
H A Dtests-runner12 ./tests $srcdir/data $builddir/data
/freebsd-10-stable/libexec/atf/
H A DMakefile28 SUBDIR= atf-check atf-sh tests
/freebsd-10-stable/tools/regression/execve/
H A Dexecve.t9 tests="test-empty test-nonexist test-nonexistshell \
18 for atest in ${tests}
/freebsd-10-stable/tests/sys/pjdfstest/
H A DMakefile4 SUBDIR+= tests
/freebsd-10-stable/usr.bin/basename/tests/
H A DMakefile1 # $FreeBSD: stable/10/usr.bin/basename/tests/Makefile 313488 2017-02-09 22:49:48Z ngie $
5 .include <netbsd-tests.test.mk>
/freebsd-10-stable/tests/
H A DMakefile12 afterinstall: install-tests-local
13 install-tests-local: .PHONY
14 ${INSTALL_SYMLINK} ../local/tests ${DESTDIR}${TESTSDIR}/local
/freebsd-10-stable/contrib/netbsd-tests/lib/libcrypt/
H A Dt_crypt.c75 } tests[] = { variable in typeref:struct:__anon1
126 for (size_t i = 0; tests[i].hash; i++) {
127 char *hash = crypt(tests[i].pw, tests[i].hash);
138 if (strcmp(hash, "*0") == 0 && strlen(tests[i].hash) < 13)
140 if (strcmp(hash, tests[i].hash))
142 i, hash, tests[i].hash);
/freebsd-10-stable/crypto/heimdal/lib/asn1/
H A Dcheck-der.c60 struct test_case tests[] = { local
76 int ntests = sizeof(tests) / sizeof(*tests);
79 tests[i].val = &values[i];
80 if (asprintf (&tests[i].name, "integer %d", values[i]) < 0)
82 if (tests[i].name == NULL)
86 ret = generic_test (tests, ntests, sizeof(int),
95 free (tests[i].name);
186 struct test_case tests[] = { local
200 int ntests = sizeof(tests) / sizeo
239 struct test_case tests[] = { local
280 struct test_case tests[] = { local
328 struct test_case tests[] = { local
372 struct test_case tests[] = { local
406 struct test_case tests[] = { local
448 struct test_case tests[] = { local
492 struct test_case tests[] = { local
530 struct test_case tests[] = { local
594 struct test_case tests[] = { local
639 struct test_case tests[] = { local
652 struct test_case tests[] = { local
665 struct test_case tests[] = { local
678 struct test_case tests[] = { local
690 struct test_case tests[] = { local
702 struct test_case tests[] = { local
715 struct test_case tests[] = { local
747 struct test_case tests[] = { local
759 struct test_case tests[] = { local
774 struct test_case tests[] = { local
1053 } tests[] = { local
[all...]
/freebsd-10-stable/tools/regression/lib/libc/gen/
H A DMakefile6 .PHONY: tests
7 tests: ${TESTS}
14 sh-tests: test-fnmatch
/freebsd-10-stable/bin/mv/
H A DMakefile9 SUBDIR+= tests
/freebsd-10-stable/bin/sleep/
H A DMakefile9 SUBDIR+= tests

Completed in 367 milliseconds

1234567891011>>