Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions compiler-rt/test/asan/TestCases/Darwin/cstring_section.c
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
// Test that AddressSanitizer moves constant strings into a separate section.

// RUN: %clang_asan -c -o %t %s
// RUN: llvm-objdump -s %t | FileCheck %s
// RUN: llvm-objdump -s %t | FileCheck %s --implicit-check-not="Hello."

// Check that "Hello.\n" is in __asan_cstring and not in __cstring.
// CHECK: Contents of section {{.*}}__asan_cstring:
// CHECK: 48656c6c {{.*}} Hello.
// CHECK: Contents of section {{.*}}__const:
// CHECK-NOT: 48656c6c {{.*}} Hello.
// CHECK: Contents of section {{.*}}__cstring:
// CHECK-NOT: 48656c6c {{.*}} Hello.
// CHECK-NEXT: 48656c6c {{.*}} Hello.

int main(int argc, char *argv[]) {
argv[0] = "Hello.\n";
Expand Down
Loading