change vmfill into memfill that limits heap separately (needed on arm)
[libc-test] / src / regression / malloc-oom.c
index 4e40ccd..d9a1f6e 100644 (file)
@@ -6,8 +6,8 @@
 
 int main(void)
 {
-       if (t_vmfill(0,0,0) < 0)
-               t_error("vmfill failed: %s\n", strerror(errno));
+       if (t_memfill() < 0)
+               t_error("memfill failed\n");
 
        errno = 0;
        if (malloc(50000))