thread functions test with local variables
| 306 | |
| 307 | // thread functions test with local variables |
| 308 | TEST(Common, ThreadFunctions) { |
| 309 | // just to test if these two are functional |
| 310 | thread_setup(); |
| 311 | EXPECT_NE((void*)NULL, mutex_buf); |
| 312 | |
| 313 | thread_cleanup(); |
| 314 | EXPECT_EQ((void*)NULL, mutex_buf); |
| 315 | |
| 316 | EXPECT_NE((uint64_t)0, gpcloud_id_function()); |
| 317 | } |
nothing calls this directly
no test coverage detected