Searched refs:tests (Results 26 - 50 of 250) sorted by relevance

12345678910

/freebsd-10.0-release/contrib/atf/atf-run/
H A Drequirements_test.cpp45 const atf::tests::vars_map no_config;
48 do_check(const std::string& expected, const atf::tests::vars_map& metadata,
49 const atf::tests::vars_map& config = no_config)
66 atf::tests::vars_map metadata;
74 atf::tests::vars_map metadata;
82 atf::tests::vars_map metadata;
91 atf::tests::vars_map metadata;
104 atf::tests::vars_map metadata, config;
113 atf::tests::vars_map metadata, config;
122 atf::tests
[all...]
/freebsd-10.0-release/contrib/expat/
H A DMakefile.in60 cd tests && rm -rf .libs runtests runtests.@OBJEXT@ runtestspp runtestspp.@OBJEXT@
61 cd tests && rm -f chardata.@OBJEXT@ minicheck.@OBJEXT@
63 rm -f examples/core tests/core xmlwf/core
76 check: tests/runtests tests/runtestspp
77 tests/runtests
78 tests/runtestspp
103 @for d in lib xmlwf examples tests ; do \
163 tests/chardata.@OBJEXT@: tests/chardat
[all...]
/freebsd-10.0-release/gnu/usr.bin/grep/tests/
H A Dbre.sh10 ${AWK-awk} -f $srcdir/bre.awk $srcdir/bre.tests > bre.script
H A Dere.sh10 ${AWK-awk} -f $srcdir/ere.awk $srcdir/ere.tests > ere.script
H A Dspencer1.sh10 ${AWK-awk} -f $srcdir/spencer1.awk $srcdir/spencer1.tests > spencer1.script
H A Dspencer2.sh10 ${AWK-awk} -f $srcdir/scriptgen.awk $srcdir/spencer2.tests > tmp2.script
/freebsd-10.0-release/tools/regression/lib/libc/locale/
H A DMakefile21 .PHONY: tests
22 tests: ${TESTS}
/freebsd-10.0-release/tools/regression/lib/msun/
H A DMakefile10 .PHONY: tests
11 tests: ${TESTS}
H A Dtest-nearbyint.c31 * - adapt tests for rint(3)
32 * - tests for harder values (more mantissa bits than float)
62 } tests[] = { variable in typeref:struct:__anon11283
72 static const int ntests = sizeof(tests) / sizeof(tests[0]);
88 out = tests[testindex].out[rmodeindex];
102 in = tests[testindex].in;
109 in = -tests[testindex].in;
133 in = tests[testindex].in;
134 ipart_expected = tests[testinde
[all...]
H A Dtest-conj.c55 static const double tests[] = { variable
76 static const int ntests = sizeof(tests) / sizeof(tests[0]) / 2;
84 __real__ expected = __real__ in = tests[2 * i];
85 __imag__ in = tests[2 * i + 1];
/freebsd-10.0-release/crypto/heimdal/lib/asn1/
H A Dcheck-gen.c98 struct test_case tests[] = { local
123 int ntests = sizeof(tests) / sizeof(*tests);
126 tests[i].val = &values[i];
127 if (asprintf (&tests[i].name, "Principal %d", i) < 0)
129 if (tests[i].name == NULL)
133 ret = generic_test (tests, ntests, sizeof(Principal),
141 free (tests[i].name);
168 struct test_case tests[] = { local
193 int ntests = sizeof(tests) / sizeo
263 struct test_case tests[] = { local
321 struct test_case tests[] = { local
408 struct test_case tests[] = { local
468 struct test_case tests[] = { local
528 struct test_case tests[] = { local
686 struct test_case tests[] = { local
776 struct test_case tests[] = { local
845 struct test_case tests[] = { local
923 struct test_case tests[] = { local
1006 struct test_case tests[] = { local
1056 struct test_case tests[] = { local
1093 struct test_case tests[] = { local
1117 struct test_case tests[] = { local
[all...]
H A Dcheck-common.h50 generic_test (const struct test_case *tests,
61 generic_decode_fail(const struct test_case *tests,
/freebsd-10.0-release/crypto/heimdal/lib/krb5/
H A Dtest_pkinit_dh2key.c70 } tests[] = { variable in typeref:struct:__anon4869
208 for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++) {
209 test_dh2key(i, context, &tests[i].X, NULL, NULL,
210 tests[i].type, &tests[i].key);
H A Dtest_hostname.c83 } tests[] = { local
88 for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++) {
89 errors += expand_hostname(context, tests[i].orig_hostname);
/freebsd-10.0-release/share/doc/papers/diskperf/
H A DMakefile6 SRCS= abs.ms motivation.ms equip.ms methodology.ms tests.ms \
/freebsd-10.0-release/tools/regression/lib/libutil/
H A Dtest-trimdomain-nodomain.c43 int tests = 0; variable
47 * This makes the tests much easier to write and less likely to fail on
68 tests++;
70 printf("not ok %d - %s\n", tests, test);
73 printf("ok %d - %s\n", tests, test);
H A Dtest-trimdomain.c43 int tests = 0; variable
47 * This makes the tests much easier to write and less likely to fail on
68 tests++;
70 printf("not ok %d - %s\n", tests, test);
73 printf("ok %d - %s\n", tests, test);
/freebsd-10.0-release/tools/regression/vfs/
H A Dtrailing_slash.t12 tests="
24 set $tests
/freebsd-10.0-release/contrib/expat/tests/
H A Dminicheck.c4 * tests. This interface is based entirely on the portion of the
42 tc->next_tcase = suite->tests;
43 suite->tests = tc;
63 tcase_test_function *new_tests = realloc(tc->tests, new_size);
65 if (new_tests != tc->tests) {
66 free(tc->tests);
67 tc->tests = new_tests;
71 tc->tests[tc->ntests] = test;
117 tc = suite->tests;
136 (tc->tests[
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/roken/
H A Dparse_reply-test.c53 } tests[] = { variable in typeref:struct:testcase
90 for (i = 0; val == 0 && i < sizeof(tests)/sizeof(tests[0]); ++i) {
91 const struct testcase *t = &tests[i];
/freebsd-10.0-release/contrib/atf/atf-c++/
H A Dmacros_hpp_test.cpp110 atf::tests::tc* the_test = new ATF_TEST_CASE_NAME(TEST_MACRO_1)();
119 atf::tests::tc* the_test = new ATF_TEST_CASE_NAME(TEST_MACRO_2)();
128 atf::tests::tc* the_test = new ATF_TEST_CASE_NAME(TEST_MACRO_3)();
H A Dtests_test.cpp66 check_equal(const atf::tests::tc& tc, const std::string& str,
100 atf::tests::detail::atf_tp_writer w(ss);
108 atf::tests::detail::atf_tp_writer w(ss);
123 atf::tests::detail::atf_tp_writer w(ss);
145 atf::tests::detail::atf_tp_writer w(ss);
188 HEADER_TC(include, "atf-c++/tests.hpp");
196 // Add tests for the "atf_tp_writer" class.
/freebsd-10.0-release/lib/libc/regex/grot/
H A Dsplit.c217 } tests[] = { variable in typeref:struct:__anon5469
290 for (n = 0; tests[n].str != NULL; n++) {
291 (void) strcpy(buf, tests[n].str);
293 nf = split(buf, fields, RNF, tests[n].seps);
295 if (nf != tests[n].nf) {
297 tests[n].str, tests[n].seps, nf, tests[n].nf);
307 if (strcmp(f, tests[n].fi[i]) != 0) {
309 tests[
[all...]
/freebsd-10.0-release/crypto/heimdal/lib/gssapi/krb5/
H A Dtest_cfx.c41 struct range tests[] = { variable in typeref:struct:range
163 for (i = 0; i < sizeof(tests)/sizeof(tests[0]); i++) {
164 test_range(&tests[i], 1, context, crypto);
165 test_range(&tests[i], 0, context, crypto);
/freebsd-10.0-release/contrib/atf/atf-c++/detail/
H A Dtest_helpers.hpp42 #include "../tests.hpp"
82 namespace tests { namespace in namespace:atf
88 void build_check_cxx_o(const atf::tests::tc&, const char*, const char*, bool);
89 atf::fs::path get_process_helpers_path(const atf::tests::tc&, bool);
94 const atf::tests::vars_map& m_config;
96 run_h_tc_data(const atf::tests::vars_map& config) :
114 run_h_tc(atf::tests::vars_map config = atf::tests::vars_map())

Completed in 120 milliseconds

12345678910