Skip to content

Commit acea9d7

Browse files
committed
Fix ut
1 parent e1f377d commit acea9d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ inline static thread_pool & reader() {
9090

9191
#ifdef IPC_OS_LINUX_
9292
inline bool check_exist(char const *name) noexcept {
93-
int fd = ::open((std::string{"/dev/shm/__IPC_SHM__"} + name).c_str(), O_RDONLY);
93+
int fd = ::open((std::string{"/dev/shm/"} + name).c_str(), O_RDONLY);
9494
if (fd == -1) {
9595
return false;
9696
}

0 commit comments

Comments
 (0)