summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVitaly Buka <vitalybuka@google.com>2017-09-09 20:07:45 +0000
committerVitaly Buka <vitalybuka@google.com>2017-09-09 20:07:45 +0000
commitf8e944121e4a90a24f5fc45fbe7208c7b56962eb (patch)
treeb745901e2c82cb49ec032185a86e50bd53c1971c
parentda41ca5a2583ddc4de2a996fab54246abcf9dcdc (diff)
downloadbcm5719-llvm-f8e944121e4a90a24f5fc45fbe7208c7b56962eb.tar.gz
bcm5719-llvm-f8e944121e4a90a24f5fc45fbe7208c7b56962eb.zip
[asan] Fix tests broken by r312858
llvm-svn: 312872
-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