diff options
-rw-r--r-- | compiler-rt/test/asan/TestCases/default_blacklist.cpp | 2 | ||||
-rw-r--r-- | compiler-rt/test/msan/default_blacklist.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/test/asan/TestCases/default_blacklist.cpp b/compiler-rt/test/asan/TestCases/default_blacklist.cpp index 4de851ae73f..84c0438f305 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-system-blacklist={{.*}}asan_blacklist.txt +// CHECK: fsanitize-blacklist={{.*}}asan_blacklist.txt diff --git a/compiler-rt/test/msan/default_blacklist.cpp b/compiler-rt/test/msan/default_blacklist.cpp index ea67f942a2d..32cc02257cb 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-system-blacklist={{.*}}msan_blacklist.txt +// CHECK: fsanitize-blacklist={{.*}}msan_blacklist.txt |