mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
After rebasing onto master, test.h was moved to test/archive/. Updated include paths in test subdirectories: - test/imp/*.cpp: "test.h" -> "../archive/test.h" - test/mem/*.cpp: "test.h" -> "../archive/test.h" - test/concur/*.cpp: "test.h" -> "../archive/test.h" This ensures all test files can properly find the test header after the directory reorganization in master branch.
11 lines
194 B
C++
11 lines
194 B
C++
|
|
#include "../archive/test.h"
|
|
|
|
#include "libipc/imp/system.h"
|
|
|
|
TEST(system, conf) {
|
|
auto ret = ipc::sys::conf(ipc::sys::info::page_size);
|
|
EXPECT_TRUE(ret);
|
|
EXPECT_GE(ret.value(), 4096);
|
|
}
|