Home
last modified time | relevance | path

Searched refs:test_key (Results 1 – 5 of 5) sorted by relevance

/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/t/compat/
Dtest-harness-compat.t815 for my $test_key ( sort keys %$results ) {
816 my $result = $results->{$test_key};
824 "Test '$test_key' can't run properly in this environment", 4
828 if (($test_key eq 'inc_taint' || $test_key eq 'shbang_misparse') && $NoTaintSupport) {
832 my @test_names = split( /,/, $test_key );
861 is_deeply $tot, $result->{totals}, "totals match for $test_key";
863 "failure summary matches for $test_key";
865 "todo summary matches for $test_key";
/openbsd/src/gnu/llvm/compiler-rt/lib/asan/tests/
Dasan_mac_test.cpp187 void *TSDAllocWorker(void *test_key) { in TSDAllocWorker() argument
188 if (test_key) { in TSDAllocWorker()
190 pthread_setspecific(*(pthread_key_t*)test_key, mem); in TSDAllocWorker()
197 pthread_key_t test_key; in TEST() local
198 pthread_key_create(&test_key, CallFreeOnWorkqueue); in TEST()
199 PTHREAD_CREATE(&th, NULL, TSDAllocWorker, &test_key); in TEST()
201 pthread_key_delete(test_key); in TEST()
Dasan_test.cpp163 void *TSDWorker(void *test_key) { in TSDWorker() argument
164 if (test_key) { in TSDWorker()
165 pthread_setspecific(*(pthread_key_t*)test_key, (void*)0xfeedface); in TSDWorker()
186 pthread_key_t test_key; in TEST() local
187 pthread_key_create(&test_key, TSDDestructor); in TEST()
188 PTHREAD_CREATE(&th, NULL, TSDWorker, &test_key); in TEST()
190 pthread_key_delete(test_key); in TEST()
/openbsd/src/usr.bin/ssh/
Dssh-add.c490 test_key(int agent_fd, const char *filename) in test_key() function
977 r |= test_key(agent_fd, argv[i]); in main()
/openbsd/src/regress/usr.bin/openssl/
Dappstest.sh251 function test_key { function