Home
last modified time | relevance | path

Searched refs:test_case (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/
H A Dlldbplatformutil.py20 def check_first_register_readable(test_case): argument
21 arch = test_case.getArchitecture()
24 test_case.expect("register read eax", substrs=['eax = 0x'])
26 test_case.expect("register read r0", substrs=['r0 = 0x'])
28 test_case.expect("register read x0", substrs=['x0 = 0x'])
30 test_case.expect("register read zero", substrs=['zero = 0x'])
32 test_case.expect("register read r0", substrs=['r0 = 0x'])
34 test_case.expect("register read r0", substrs=['r0 = 0x'])
37 test_case.fail(
39 test_case.getArchitecture())
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Module-Metadata/t/
H A Dextract-package.t151 foreach my $test_case (@pkg_names) {
153 note $test_case->{name};
154 my $code = $test_case->{code};
155 my $expected_name = $test_case->{package};
171 local $TODO = $test_case->{TODO};
173 "case $test_case->{name}: correct package names (expected '" . join(', ', @$expected_name) . "')" )
176 is( $warnings, '', "case $test_case->{name}: no warnings from parsing" ) or $errs++;
H A Dextract-version.t693 foreach my $test_case (@modules) {
696 note $test_case->{name};
697 my $code = $test_case->{code};
698 my $expected_version = $test_case->{vers};
724 local $TODO = !defined($got) && ($test_case->{TODO_code_sub} || $test_case->{TODO_scalar}) ? 1 : undef;
729 local $TODO = $test_case->{TODO_code_sub};
732 "case '$test_case->{name}': module version passes match sub"
737 local $TODO = $test_case->{TODO_scalar};
741 "case '$test_case
[all...]
H A Dmetadata.t330 my $test_case = {
347 note $test_case->{name};
348 my $code = $test_case->{code};
349 my $expected_name = $test_case->{module};
350 local $TODO = $test_case->{TODO};
354 …le::Spec->splitpath(File::Spec->catfile($tmpdir, "Simple${test_num}", ($test_case->{filename} || '…
361 "case '$test_case->{name}': module name matches",
/openbsd-src/regress/lib/libcrypto/wycheproof/
H A Dwycheproof-json.pl46 foreach $test_case (@$test_group_tests) {
47 %tc = %$test_case;
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_result.py181 test_case, formatted_exc = result.failures[0]
182 self.assertTrue(test_case is test)
230 test_case, formatted_exc = result.errors[0]
231 self.assertTrue(test_case is test)
/openbsd-src/gnu/llvm/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_test.cpp1275 for (auto test_case : test_cases) { in TEST() local
1278 for (int i = 0; test_case[i] != 0; i++) in TEST()
1279 tracker.NextPage(test_case[i] == 'x'); in TEST()
1283 const char* last_x = strrchr(test_case, 'x'); in TEST()
1285 test_case, in TEST()
1286 last_x == nullptr ? 0 : (last_x - test_case + 1)); in TEST()
/openbsd-src/lib/libexpat/tests/
H A Dns_tests.c683 struct test_case { in START_TEST() struct
688 struct test_case cases[] = { in START_TEST()
H A Dbasic_tests.c4706 struct test_case { in START_TEST()
4724 struct test_case cases[] = { in START_TEST()
4642 struct test_case { START_TEST() struct
4643 goodNameSTART_TEST::test_case START_TEST() argument
4644 goodNameStartSTART_TEST::test_case START_TEST() argument
4645 tagNameSTART_TEST::test_case START_TEST() argument
/openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/
H A Dcase.py130 def __init__(self, expected, test_case, expected_regexp=None): argument
132 self.failureException = test_case.failureException