linuxOS_D21X/source/artinchip/awtk-ui/awtk/tests/mutex_test.cc

14 lines
283 B
C++
Raw Normal View History

2024-11-29 08:23:11 +00:00
#include "gtest/gtest.h"
#include "tkc/mutex.h"
#include "tkc/thread.h"
#include "tkc/platform.h"
TEST(Mutex, basic) {
tk_mutex_t* mutex = tk_mutex_create();
ASSERT_EQ(tk_mutex_lock(mutex), RET_OK);
ASSERT_EQ(tk_mutex_unlock(mutex), RET_OK);
tk_mutex_destroy(mutex);
}