1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

test: don't assert that total_mem > free_mem

Assertion fails when running in a resource container, like a Solaris zone.
The total reported is the container's hard limit, the free memory that of
the whole system.
This commit is contained in:
Ben Noordhuis 2011-10-11 23:42:51 +00:00
parent 04daabd58f
commit 7b01ad1685

View File

@ -28,7 +28,6 @@ TEST_IMPL(get_memory) {
ASSERT(free_mem > 0);
ASSERT(total_mem > 0);
ASSERT(total_mem > free_mem);
return 0;
}