Files
luban-lite-t3e-pro/packages/third-party/awtk-ui/awtk/tests/mutex_test.cc
2025-09-30 11:56:06 +08:00

14 lines
296 B
C++

#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);
}