]> granicus.if.org Git - clang/commitdiff
Suppress uninteresting warnings in test/CoverageMapping, NFC.
authorVedant Kumar <vsk@apple.com>
Sat, 25 Feb 2017 07:05:41 +0000 (07:05 +0000)
committerVedant Kumar <vsk@apple.com>
Sat, 25 Feb 2017 07:05:41 +0000 (07:05 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@296247 91177308-0d34-0410-b5e6-96231b3b80d8

test/CoverageMapping/implicit-def-in-macro.m
test/CoverageMapping/macro-expressions.cpp
test/CoverageMapping/objc.m

index 902fc8bd6a77499e86e028cc839c33ca80765e7c..71184fc78af9ac75907aea71251d1307e70411a0 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -triple x86_64-apple-darwin -fobjc-runtime=macosx-10.10.0 -fblocks -fobjc-arc %s | FileCheck %s
+// RUN: %clang_cc1 -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -triple x86_64-apple-darwin -fobjc-runtime=macosx-10.10.0 -fblocks -fobjc-arc -w %s | FileCheck %s
 
 @interface Foo
 @end
index 3852fc6a23b7d69268619fccafc7e95dc0e57324..3eba86949a765014f1b47686f031509fc93d6793 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -std=c++11 -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name macro-expressions.cpp %s | FileCheck %s
+// RUN: %clang_cc1 -std=c++11 -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name macro-expressions.cpp -w %s | FileCheck %s
 
 #define EXPR(x) (x)
 #define NEXPR(x) (!x)
index 89da5da3203edbdff782420ee2cdf56cc8716a35..55c7545370cc52e7571f6c2d267e055f360842a2 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name objc.m -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 %s | FileCheck %s
+// RUN: %clang_cc1 -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only -main-file-name objc.m -triple x86_64-apple-darwin -fobjc-runtime=macosx-fragile-10.5 -w %s | FileCheck %s
 
 @interface A
 - (void)bork:(int)msg;