summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--compiler-rt/test/asan/TestCases/Linux/preinstalled_signal.cc6
-rw-r--r--compiler-rt/test/asan/TestCases/global-address.cpp4
2 files changed, 5 insertions, 5 deletions
diff --git a/compiler-rt/test/asan/TestCases/Linux/preinstalled_signal.cc b/compiler-rt/test/asan/TestCases/Linux/preinstalled_signal.cc
index 4d466c21f94..10feb71a59f 100644
--- a/compiler-rt/test/asan/TestCases/Linux/preinstalled_signal.cc
+++ b/compiler-rt/test/asan/TestCases/Linux/preinstalled_signal.cc
@@ -98,10 +98,10 @@ int main(int argc, char *argv[]) {
}
// CHECK-NOT: TestSig
-// CHECK: ASAN:DEADLYSIGNAL
+// CHECK: AddressSanitizer:DEADLYSIGNAL
-// CHECK-HANDLER-NOT: ASAN:DEADLYSIGNAL
+// CHECK-HANDLER-NOT: AddressSanitizer:DEADLYSIGNAL
// CHECK-HANDLER: TestSigHandler
-// CHECK-ACTION-NOT: ASAN:DEADLYSIGNAL
+// CHECK-ACTION-NOT: AddressSanitizer:DEADLYSIGNAL
// CHECK-ACTION: TestSigAction
diff --git a/compiler-rt/test/asan/TestCases/global-address.cpp b/compiler-rt/test/asan/TestCases/global-address.cpp
index 0e56ca10c39..81f0230b733 100644
--- a/compiler-rt/test/asan/TestCases/global-address.cpp
+++ b/compiler-rt/test/asan/TestCases/global-address.cpp
@@ -5,8 +5,8 @@
int g_i = 42;
int main() {
// CHECK: AddressSanitizer: attempting to call __sanitizer_get_allocated_size() for pointer which is not owned
- // CHECK-NOT: ASAN:DEADLYSIGNAL
+ // CHECK-NOT: AddressSanitizer:DEADLYSIGNAL
// CHECK: SUMMARY: AddressSanitizer: bad-__sanitizer_get_allocated_size
- // CHECK-NOT: ASAN:DEADLYSIGNAL
+ // CHECK-NOT: AddressSanitizer:DEADLYSIGNAL
return (int)__sanitizer_get_allocated_size(&g_i);
}
OpenPOWER on IntegriCloud