aboutsummaryrefslogtreecommitdiff
path: root/test/asan/TestCases/Darwin/empty-section.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/asan/TestCases/Darwin/empty-section.cc')
-rw-r--r--test/asan/TestCases/Darwin/empty-section.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/asan/TestCases/Darwin/empty-section.cc b/test/asan/TestCases/Darwin/empty-section.cc
new file mode 100644
index 000000000000..5b006b545488
--- /dev/null
+++ b/test/asan/TestCases/Darwin/empty-section.cc
@@ -0,0 +1,12 @@
+// Regression test with an empty (length = 0) custom section.
+
+// RUN: %clangxx_asan -g -O0 %s -c -o %t.o
+// RUN: %clangxx_asan -g -O0 %t.o -o %t -sectcreate mysegment mysection /dev/null
+// RUN: %run %t 2>&1 | FileCheck %s
+
+#include <stdio.h>
+
+int main() {
+ printf("Hello, world!\n");
+ // CHECK: Hello, world!
+}