summaryrefslogtreecommitdiff
path: root/test/scudo/alignment.c
diff options
context:
space:
mode:
authorDimitry Andric <dim@FreeBSD.org>2017-12-18 20:11:54 +0000
committerDimitry Andric <dim@FreeBSD.org>2017-12-18 20:11:54 +0000
commitcdf4f3055e964bb585f294cf77cb549ead82783f (patch)
tree7bceeca766b3fbe491245bc926a083f78c35d1de /test/scudo/alignment.c
parent625108084a3ec7c19c7745004c5af0ed7aa417a9 (diff)
downloadsrc-test2-cdf4f3055e964bb585f294cf77cb549ead82783f.tar.gz
src-test2-cdf4f3055e964bb585f294cf77cb549ead82783f.zip
Notes
Diffstat (limited to 'test/scudo/alignment.c')
-rw-r--r--test/scudo/alignment.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/scudo/alignment.c b/test/scudo/alignment.c
new file mode 100644
index 000000000000..6235d50608db
--- /dev/null
+++ b/test/scudo/alignment.c
@@ -0,0 +1,23 @@
+// RUN: %clang_scudo %s -o %t
+// RUN: not %run %t pointers 2>&1 | FileCheck %s
+
+// Tests that a non MinAlignment aligned pointer will trigger the associated
+// error on deallocation.
+
+#include <assert.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <string.h>
+
+int main(int argc, char **argv)
+{
+ assert(argc == 2);
+ if (!strcmp(argv[1], "pointers")) {
+ void *p = malloc(1U << 16);
+ assert(p);
+ free((void *)((uintptr_t)p | 1));
+ }
+ return 0;
+}
+
+// CHECK: ERROR: attempted to deallocate a chunk not properly aligned