Searched refs:test_case (Results 1 – 10 of 10) sorted by relevance
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbplatformutil.py | 20 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 D | extract-package.t | 151 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 D | extract-version.t | 693 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 D | metadata.t | 330 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 D | wycheproof-json.pl | 46 foreach $test_case (@$test_group_tests) { 47 %tc = %$test_case;
|
| /openbsd-src/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/ |
| H A D | test_result.py | 181 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 D | sanitizer_allocator_test.cpp | 1275 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 D | ns_tests.c | 683 struct test_case { in START_TEST() struct 688 struct test_case cases[] = { in START_TEST()
|
| H A D | basic_tests.c | 4706 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 D | case.py | 130 def __init__(self, expected, test_case, expected_regexp=None): argument 132 self.failureException = test_case.failureException
|