test_shm.cpp 180 B

12345678
  1. #include <gtest/gtest.h>
  2. #include "shm_mem.h"
  3. TEST(ShareMemoryTest, SpShmTest) {
  4. void* hint = (void*)0x20000000;
  5. int ret = shm_getmem(95555, &hint, 1);
  6. ASSERT_TRUE(ret == 0);
  7. }