diff options
Diffstat (limited to 'compiler-rt/test/asan/TestCases/Darwin/empty-section.cpp')
-rw-r--r-- | compiler-rt/test/asan/TestCases/Darwin/empty-section.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/compiler-rt/test/asan/TestCases/Darwin/empty-section.cpp b/compiler-rt/test/asan/TestCases/Darwin/empty-section.cpp new file mode 100644 index 00000000000..5b006b54548 --- /dev/null +++ b/compiler-rt/test/asan/TestCases/Darwin/empty-section.cpp @@ -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! +} |