[compiler-rt] bdeb272 - [compiler-rt] Fix tests after 03b84e4f6d0
Jan Korous via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 7 14:41:02 PST 2019
Author: Jan Korous
Date: 2019-11-07T14:40:22-08:00
New Revision: bdeb2724f0aa9c518f94d998d24d8620a1e88727
URL: https://github.com/llvm/llvm-project/commit/bdeb2724f0aa9c518f94d998d24d8620a1e88727
DIFF: https://github.com/llvm/llvm-project/commit/bdeb2724f0aa9c518f94d998d24d8620a1e88727.diff
LOG: [compiler-rt] Fix tests after 03b84e4f6d0
Fallout from:
[clang] Report sanitizer blacklist as a dependency in cc1
Default blacklists are now passed via -fsanitize-system-blacklist from driver to cc1.
Added:
Modified:
compiler-rt/test/asan/TestCases/default_blacklist.cpp
compiler-rt/test/msan/default_blacklist.cpp
Removed:
################################################################################
diff --git a/compiler-rt/test/asan/TestCases/default_blacklist.cpp b/compiler-rt/test/asan/TestCases/default_blacklist.cpp
index 84c0438f3058..4de851ae73fe 100644
--- a/compiler-rt/test/asan/TestCases/default_blacklist.cpp
+++ b/compiler-rt/test/asan/TestCases/default_blacklist.cpp
@@ -4,4 +4,4 @@
//
// Test that ASan uses the default blacklist from resource directory.
// RUN: %clangxx_asan -### %s 2>&1 | FileCheck %s
-// CHECK: fsanitize-blacklist={{.*}}asan_blacklist.txt
+// CHECK: fsanitize-system-blacklist={{.*}}asan_blacklist.txt
diff --git a/compiler-rt/test/msan/default_blacklist.cpp b/compiler-rt/test/msan/default_blacklist.cpp
index 32cc02257cb0..ea67f942a2d0 100644
--- a/compiler-rt/test/msan/default_blacklist.cpp
+++ b/compiler-rt/test/msan/default_blacklist.cpp
@@ -1,3 +1,3 @@
// Test that MSan uses the default blacklist from resource directory.
// RUN: %clangxx_msan -### %s 2>&1 | FileCheck %s
-// CHECK: fsanitize-blacklist={{.*}}msan_blacklist.txt
+// CHECK: fsanitize-system-blacklist={{.*}}msan_blacklist.txt
More information about the llvm-commits
mailing list