[PATCH] D36302: [msan] Switch the pvalloc overflow test to a lit test

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Aug 4 00:33:08 PDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL310033: [msan] Switch the pvalloc overflow test to a lit test (authored by d0k).

Repository:
  rL LLVM

https://reviews.llvm.org/D36302

Files:
  compiler-rt/trunk/lib/msan/tests/msan_test.cc
  compiler-rt/trunk/test/msan/pvalloc.cc


Index: compiler-rt/trunk/test/msan/pvalloc.cc
===================================================================
--- compiler-rt/trunk/test/msan/pvalloc.cc
+++ compiler-rt/trunk/test/msan/pvalloc.cc
@@ -0,0 +1,43 @@
+// RUN: %clangxx_msan -O0 %s -o %t
+// RUN: MSAN_OPTIONS=allocator_may_return_null=0 not %run %t m1 2>&1 | FileCheck %s
+// RUN: MSAN_OPTIONS=allocator_may_return_null=1     %run %t m1 2>&1
+// RUN: MSAN_OPTIONS=allocator_may_return_null=0 not %run %t psm1 2>&1 | FileCheck %s
+// RUN: MSAN_OPTIONS=allocator_may_return_null=1     %run %t psm1 2>&1
+
+// UNSUPPORTED: win32, freebsd
+
+// Checks that pvalloc overflows are caught. If the allocator is allowed to
+// return null, the errno should be set to ENOMEM.
+
+#include <assert.h>
+#include <errno.h>
+#include <malloc.h>
+#include <stdint.h>
+#include <string.h>
+#include <unistd.h>
+
+int main(int argc, char *argv[]) {
+  void *p;
+  size_t page_size;
+
+  assert(argc == 2);
+
+  page_size = sysconf(_SC_PAGESIZE);
+  // Check that the page size is a power of two.
+  assert((page_size & (page_size - 1)) == 0);
+
+  if (!strcmp(argv[1], "m1")) {
+    p = pvalloc((uintptr_t)-1);
+    assert(!p);
+    assert(errno == ENOMEM);
+  }
+  if (!strcmp(argv[1], "psm1")) {
+    p = pvalloc((uintptr_t)-(page_size - 1));
+    assert(!p);
+    assert(errno == ENOMEM);
+  }
+
+  return 0;
+}
+
+// CHECK: MemorySanitizer's allocator is terminating the process
Index: compiler-rt/trunk/lib/msan/tests/msan_test.cc
===================================================================
--- compiler-rt/trunk/lib/msan/tests/msan_test.cc
+++ compiler-rt/trunk/lib/msan/tests/msan_test.cc
@@ -3449,12 +3449,6 @@
   EXPECT_EQ(0U, (uintptr_t)p % PageSize);
   EXPECT_EQ(PageSize, __sanitizer_get_allocated_size(p));
   free(p);
-
-  // Overflows should be caught.
-  EXPECT_DEATH(p = pvalloc((uintptr_t)-1),
-               "allocator is terminating the process instead of returning 0");
-  EXPECT_DEATH(p = pvalloc((uintptr_t)-(PageSize - 1)),
-               "allocator is terminating the process instead of returning 0");
 }
 #endif
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D36302.109686.patch
Type: text/x-patch
Size: 2099 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170804/5a0520be/attachment.bin>


More information about the llvm-commits mailing list