awtk/tests/semaphore_test.cc

26 lines
565 B
C++
Raw Normal View History

2019-10-28 06:38:22 +08:00
#include "gtest/gtest.h"
#include "tkc/semaphore.h"
#include "tkc/thread.h"
#include "tkc/platform.h"
static void* thread_entry(void* args) {
tk_semaphore_t* sem = (tk_semaphore_t*)args;
sleep_ms(100);
tk_semaphore_post(sem);
return NULL;
}
TEST(Semaphore, basic) {
2019-10-28 06:55:32 +08:00
tk_semaphore_t* sem = tk_semaphore_create(0, "hello");
2019-10-28 06:38:22 +08:00
tk_thread_t* thread = tk_thread_create(thread_entry, sem);
tk_thread_start(thread);
ASSERT_EQ(tk_semaphore_wait(sem, 2000), RET_OK);
tk_thread_join(thread);
tk_thread_destroy(thread);
tk_semaphore_destroy(sem);
}