summaryrefslogtreecommitdiff
path: root/test/Misc
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-03-15 16:35:13 +0000
committerZachary Turner <zturner@google.com>2017-03-15 16:35:13 +0000
commitba3ebcd8c75d0803a1d3252ed143cdcfede7511a (patch)
tree3f55da65db1b2e0fb8d5abf48fc5796efba30a4f /test/Misc
parent9a4d019389c762a32274ed1ca1ead93f79acbcd2 (diff)
Disable warning about MSVC not found.
When this test runs on bots that are configured to default to MSVC, but MSVC isn't actually installed, we can emit a warning that MSVC is not found. Since MSVC isn't actually needed for this test to succeed, just disable this warning. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@297858 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Misc')
-rw-r--r--test/Misc/backend-stack-frame-diagnostics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Misc/backend-stack-frame-diagnostics.cpp b/test/Misc/backend-stack-frame-diagnostics.cpp
index a850f22539..bb5566f1a4 100644
--- a/test/Misc/backend-stack-frame-diagnostics.cpp
+++ b/test/Misc/backend-stack-frame-diagnostics.cpp
@@ -8,7 +8,7 @@
// Test that link invocations don't emit an "argument unused during compilation" diagnostic.
// RUN: touch %t.o
-// RUN: %clang -Werror -Wno-liblto -Wframe-larger-than=0 %t.o -### 2>&1 | not grep ' error: '
+// RUN: %clang -Werror -Wno-msvc-not-found -Wno-liblto -Wframe-larger-than=0 %t.o -### 2>&1 | not grep ' error: '
// TODO: Support rich backend diagnostics for Objective-C methods.