diff options
-rw-r--r-- | source/kit/shared_memory.win32.c | 1 | ||||
-rw-r--r-- | source/tests/file.test.c | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/source/kit/shared_memory.win32.c b/source/kit/shared_memory.win32.c index 73175b1..34bb276 100644 --- a/source/kit/shared_memory.win32.c +++ b/source/kit/shared_memory.win32.c @@ -54,7 +54,6 @@ kit_shared_memory_t kit_shared_memory_open(kit_str_t name, i64 size, void *p = MapViewOfFile(h, FILE_MAP_ALL_ACCESS, 0, 0, (SIZE_T) size); - assert(p != NULL); if (p == NULL) { CloseHandle(h); mem.status = KIT_ERROR_MAP_FAILED; diff --git a/source/tests/file.test.c b/source/tests/file.test.c index 2a37c07..86a88e2 100644 --- a/source/tests/file.test.c +++ b/source/tests/file.test.c @@ -270,10 +270,8 @@ TEST("file map write") { REQUIRE_EQ(n, 3); fclose(f); - if (n == 3) { - printf("READ: %d %d %d \n", buf[0], buf[1], buf[2]); + if (n == 3) REQUIRE_EQ(memcmp(buf, "bar", 3), 0); - } file_remove(SZ("foo")); } |