diff --git a/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_key_create/2-1.c b/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_key_create/2-1.c index adad64c9b3..fca418f494 100644 --- a/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_key_create/2-1.c +++ b/src/tests/system/libroot/posix/posixtestsuite/conformance/interfaces/pthread_key_create/2-1.c @@ -30,12 +30,12 @@ int main() void* rc; /* Verify that the value associated with "key" in a new thread is NULL */ - rc = pthread_getspecific(key); - if(rc != NULL) - { - printf("pthread_key_create_2-1 Test FAILED\n"); - return PTS_FAIL; - } +// rc = pthread_getspecific(key); +// if(rc != NULL) +// { +// printf("pthread_key_create_2-1 Test FAILED\n"); +// return PTS_FAIL; +// } if(pthread_key_create(&key, NULL) != 0) {