Searched refs:test_value (Results 1 - 16 of 16) sorted by relevance

/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/basic_string_view/operations/compare/wchar_t/
H A D1.cc38 test_value(int result, want_value expected);
41 test_value(int result, want_value expected) function
77 test_value(wcscmp(L"costa marbella", L"costa rica"), lt);
78 test_value(wcscmp(L"costa rica", L"costa rica"), z);
79 test_value(wcscmp(str_1.data(), str_0.data()), lt);
80 test_value(wcscmp(str_0.data(), str_1.data()), gt);
81 test_value(wcsncmp(str_1.data(), str_0.data(), 6), z);
82 test_value(wcsncmp(str_1.data(), str_0.data(), 14), lt);
83 test_value(wmemcmp(str_1.data(), str_0.data(), 6), z);
84 test_value(wmemcm
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/gdb/unittests/basic_string_view/operations/compare/char/
H A D1.cc37 test_value(int result, want_value expected);
40 test_value(int result, want_value expected) function in namespace:operations_compare_1
74 test_value(strcmp("costa marbella", "costa rica"), lt);
75 test_value(strcmp("costa rica", "costa rica"), z);
76 test_value(strcmp(str_1.data(), str_0.data()), lt);
77 test_value(strcmp(str_0.data(), str_1.data()), gt);
78 test_value(strncmp(str_1.data(), str_0.data(), 6), z);
79 test_value(strncmp(str_1.data(), str_0.data(), 14), lt);
80 test_value(memcmp(str_1.data(), str_0.data(), 6), z);
81 test_value(memcm
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/basic_string_view/operations/compare/char/
H A D1.cc37 test_value(int result, want_value expected);
40 test_value(int result, want_value expected) function in namespace:operations_compare_1
74 test_value(strcmp("costa marbella", "costa rica"), lt);
75 test_value(strcmp("costa rica", "costa rica"), z);
76 test_value(strcmp(str_1.data(), str_0.data()), lt);
77 test_value(strcmp(str_0.data(), str_1.data()), gt);
78 test_value(strncmp(str_1.data(), str_0.data(), 6), z);
79 test_value(strncmp(str_1.data(), str_0.data(), 14), lt);
80 test_value(memcmp(str_1.data(), str_0.data(), 6), z);
81 test_value(memcm
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/unittests/basic_string_view/operations/compare/wchar_t/
H A D1.cc38 test_value(int result, want_value expected);
41 test_value(int result, want_value expected) function
77 test_value(wcscmp(L"costa marbella", L"costa rica"), lt);
78 test_value(wcscmp(L"costa rica", L"costa rica"), z);
79 test_value(wcscmp(str_1.data(), str_0.data()), lt);
80 test_value(wcscmp(str_0.data(), str_1.data()), gt);
81 test_value(wcsncmp(str_1.data(), str_0.data(), 6), z);
82 test_value(wcsncmp(str_1.data(), str_0.data(), 14), lt);
83 test_value(wmemcmp(str_1.data(), str_0.data(), 6), z);
84 test_value(wmemcm
[all...]
/netbsd-current/external/bsd/atf/dist/atf-c/
H A Dconfig_test.c40 static const char *test_value = "env-value"; variable
86 ATF_CHECK_STREQ(atf_config_get(v->lc), test_value);
88 ATF_CHECK(strcmp(atf_config_get(v->lc), test_value) != 0);
110 ATF_CHECK(strcmp(atf_config_get(v->lc), test_value) != 0);
128 RE(atf_env_set(v->uc, test_value));
130 compare_one(v->lc, test_value);
/netbsd-current/tests/modules/
H A Dt_threadpool.sh64 read_sysctl kern.threadpool_tester.test_value 0
80 read_sysctl kern.threadpool_tester.test_value 1
85 read_sysctl kern.threadpool_tester.test_value 2
106 read_sysctl kern.threadpool_tester.test_value 0
122 read_sysctl kern.threadpool_tester.test_value 1
127 read_sysctl kern.threadpool_tester.test_value 2
/netbsd-current/external/bsd/atf/dist/atf-c++/
H A Dconfig_test.cpp40 static const char *test_value = "env-value"; variable
120 ATF_REQUIRE_EQ(atf::config::get(v->lc), test_value);
122 ATF_REQUIRE(atf::config::get(v->lc) != test_value);
142 ATF_REQUIRE(atf::config::get(v->lc) != test_value);
160 set_env_var(v->uc, test_value);
162 compare_one(v->lc, test_value);
/netbsd-current/external/bsd/atf/dist/tools/
H A Dconfig_test.cpp39 static const char *test_value = "env-value"; variable
123 ATF_REQUIRE_EQ(tools::config::get(v->lc), test_value);
125 ATF_REQUIRE(tools::config::get(v->lc) != test_value);
145 ATF_REQUIRE(tools::config::get(v->lc) != test_value);
163 set_env_var(v->uc, test_value);
165 compare_one(v->lc, test_value);
/netbsd-current/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
H A Dbreak-always.exp72 foreach test_value {0 1} {
73 set write_test "write $test_value to breakpoint's address"
75 gdb_test_multiple "p /x *(char *) $bp_address = $test_value" $write_test {
88 set read_test "read back $test_value from the breakpoint's address"
89 gdb_test "p /x *(char *) $bp_address" " = 0x$test_value" $read_test
H A Dalias.exp44 proc test_abbrev_alias { name gdb_command test_value } {
46 gdb_test_no_output "$name print elements $test_value"
47 gdb_test "show print elements" "Limit .* is $test_value\[.\]" "verify $name"
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dbreak-always.exp72 foreach test_value {0 1} {
73 set write_test "write $test_value to breakpoint's address"
75 gdb_test_multiple "p /x *(char *) $bp_address = $test_value" $write_test {
88 set read_test "read back $test_value from the breakpoint's address"
89 gdb_test "p /x *(char *) $bp_address" " = 0x$test_value" $read_test
H A Dalias.exp44 proc test_abbrev_alias { name gdb_command test_value } {
46 gdb_test_no_output "$name print elements $test_value"
47 gdb_test "show print elements" "Limit .* is $test_value\[.\]" "verify $name"
/netbsd-current/external/lgpl3/mpfr/dist/tests/
H A Dtrandom_deviate.c225 test_value (long nbtests, mpfr_prec_t prec, mpfr_rnd_t rnd, function
314 test_value (nbtests, 2, MPFR_RNDD, verbose);
315 test_value (nbtests, 5, MPFR_RNDU, verbose);
316 test_value (nbtests, 24, MPFR_RNDN, verbose);
317 test_value (nbtests, 53, MPFR_RNDZ, verbose);
318 test_value (nbtests, 64, MPFR_RNDA, verbose);
/netbsd-current/external/gpl3/gdb/dist/bfd/
H A Delfxx-x86.c2869 bfd_vma test_value = (plt_start - sframe_start)
2873 bfd_put_signed_32 (dynobj, test_value,
2903 bfd_vma test_value = (plt_start - sframe_start)
2907 bfd_put_signed_32 (dynobj, test_value,
/netbsd-current/external/gpl3/binutils/dist/bfd/
H A Delfxx-x86.c2945 bfd_vma test_value = (plt_start - sframe_start)
2949 bfd_put_signed_32 (dynobj, test_value,
2979 bfd_vma test_value = (plt_start - sframe_start)
2983 bfd_put_signed_32 (dynobj, test_value,
/netbsd-current/crypto/external/bsd/openssl/dist/test/
H A Devp_extra_test.c3677 const int test_value = 32; local
3684 && TEST_int_gt(EVP_PKEY_CTX_set_rsa_pss_saltlen(pkey_ctx, test_value), 0)
3686 && TEST_int_eq(saltlen, test_value);

Completed in 334 milliseconds