// S : tags threads libc c // S : expect --result valid // S : cc -o test.bc -D_PDCLIB_BUILD -DTEST -std=c11 $file // S : verify -o nofail:malloc test.bc #include "_PDCLIB_test.h" #include "threads.h" #ifndef REGTEST static tss_t key; static char v; #endif int main( void ) { #ifndef REGTEST TESTCASE(tss_create(&key, NULL) == thrd_success); TESTCASE(tss_get(key) == NULL); TESTCASE(tss_set(key, &v) == thrd_success); TESTCASE(tss_get(key) == &v); tss_delete(key); #endif return TEST_RESULTS; }