From f8e944121e4a90a24f5fc45fbe7208c7b56962eb Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Sat, 9 Sep 2017 20:07:45 +0000 Subject: [asan] Fix tests broken by r312858 llvm-svn: 312872 --- compiler-rt/test/asan/TestCases/Linux/preinstalled_signal.cc | 6 +++--- compiler-rt/test/asan/TestCases/global-address.cpp | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'compiler-rt') 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); } -- cgit v1.2.3