]> granicus.if.org Git - clang/commitdiff
Remove RUN: true lines.
authorDaniel Dunbar <daniel@zuster.org>
Sun, 8 Nov 2009 01:47:25 +0000 (01:47 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sun, 8 Nov 2009 01:47:25 +0000 (01:47 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86432 91177308-0d34-0410-b5e6-96231b3b80d8

99 files changed:
test/CXX/temp/temp.param/p1.cpp
test/CodeCompletion/call.cpp
test/CodeCompletion/enum-switch-case-qualified.cpp
test/CodeCompletion/enum-switch-case.c
test/CodeCompletion/enum-switch-case.cpp
test/CodeCompletion/function-templates.cpp
test/CodeCompletion/functions.cpp
test/CodeCompletion/macros.c
test/CodeCompletion/member-access.c
test/CodeCompletion/member-access.cpp
test/CodeCompletion/namespace-alias.cpp
test/CodeCompletion/namespace.cpp
test/CodeCompletion/nested-name-specifier.cpp
test/CodeCompletion/operator.cpp
test/CodeCompletion/ordinary-name.c
test/CodeCompletion/tag.c
test/CodeCompletion/tag.cpp
test/CodeCompletion/templates.cpp
test/CodeCompletion/truncation.c
test/CodeCompletion/using-namespace.cpp
test/CodeCompletion/using.cpp
test/CodeGen/bitfield-promote.c
test/CodeGen/blocks.c
test/CodeGen/global-decls.c
test/CodeGen/parameter-passing.c
test/CodeGen/stack-protector.c
test/CodeGen/struct-passing.c
test/CodeGen/target-data.c
test/CodeGen/tentative-decls.c
test/CodeGen/visibility.c
test/CodeGen/x86_32-arguments.c
test/CodeGen/x86_64-arguments.c
test/CodeGenCXX/PR5050-constructor-conversion.cpp
test/CodeGenCXX/array-construction.cpp
test/CodeGenCXX/call-arg-zero-temp.cpp
test/CodeGenCXX/cast-conversion.cpp
test/CodeGenCXX/constructor-conversion.cpp
test/CodeGenCXX/constructor-default-arg.cpp
test/CodeGenCXX/constructor-for-array-members.cpp
test/CodeGenCXX/constructor-template.cpp
test/CodeGenCXX/conversion-function.cpp
test/CodeGenCXX/convert-to-fptr.cpp
test/CodeGenCXX/copy-assign-synthesis-1.cpp
test/CodeGenCXX/copy-constructor-elim.cpp
test/CodeGenCXX/copy-constructor-synthesis.cpp
test/CodeGenCXX/decl-ref-init.cpp
test/CodeGenCXX/default-constructor-for-members.cpp
test/CodeGenCXX/default-destructor-synthesis.cpp
test/CodeGenCXX/derived-to-base-conv.cpp
test/CodeGenCXX/implicit-instantiation-1.cpp
test/CodeGenCXX/ptr-to-member-function.cpp
test/CodeGenCXX/trivial-constructor-init.cpp
test/CodeGenCXX/vararg-conversion-ctor.cpp
test/CodeGenCXX/virt.cpp
test/CodeGenCXX/x86_64-arguments.cpp
test/CodeGenObjC/bitfield-ivar-offsets.m
test/CodeGenObjC/blocks-2.m
test/CodeGenObjC/blocks.m
test/CodeGenObjC/interface-layout-64.m
test/CodeGenObjC/ivar-layout-64.m
test/CodeGenObjC/ivar-layout-no-optimize.m
test/CodeGenObjC/messages.m
test/CodeGenObjC/metadata-symbols-32.m
test/CodeGenObjC/metadata-symbols-64.m
test/CodeGenObjC/metadata_symbols.m
test/CodeGenObjC/non-lazy-classes.m
test/CodeGenObjC/objc-align.m
test/CodeGenObjC/objc-assign-ivar.m
test/CodeGenObjC/objc-read-weak-byref.m
test/CodeGenObjC/objc2-assign-global.m
test/CodeGenObjC/objc2-ivar-assign.m
test/CodeGenObjC/objc2-new-gc-api-strongcast.m
test/CodeGenObjC/objc2-write-barrier-2.m
test/CodeGenObjC/objc2-write-barrier-3.m
test/CodeGenObjC/objc2-write-barrier-4.m
test/CodeGenObjC/objc2-write-barrier-5.m
test/CodeGenObjC/objc2-write-barrier.m
test/CodeGenObjC/protocol-in-extended-class.m
test/CodeGenObjC/protocols-lazy.m
test/Coverage/targets.c
test/Driver/Xarch.c
test/Driver/bindings.c
test/Driver/clang-translation.c
test/Driver/clang_f_opts.c
test/Driver/darwin-cc.c
test/Driver/darwin-ld.c
test/Driver/immediate-options.c
test/Driver/lto.c
test/Driver/parsing.c
test/Driver/phases.c
test/Frontend/cpp-output.c
test/Frontend/darwin-version.c
test/Frontend/rewrite-macros.c
test/Parser/cxx-using-declaration.cpp
test/Preprocessor/assembler-with-cpp.c
test/Preprocessor/init.c
test/Preprocessor/pic.c
test/Preprocessor/stdint.c
test/Preprocessor/x86_target_features.c

index a6638b4f60f2aff0ace467c8d9ada1e2a2dd7519..676bffe31dc5065c3c5c7dc9910727e8a2091b25 100644 (file)
@@ -1,4 +1,4 @@
 // Suppress 'no run line' failure.
-// RUN: true
+// RUN: echo ok
 
 // Paragraph 1 is descriptive, and therefore requires no tests.
index 67c86d9a810934f8c7f84635b3e5f5931af80439..8c7bf83e2a3a6e236d7b6286b5abaef422d24549 100644 (file)
@@ -24,5 +24,4 @@ void test() {
   // RUN: clang-cc -fsyntax-only -code-completion-at=%s:19:13 %s -o - | FileCheck -check-prefix=CC2 %s
   // CHECK-CC2-NOT: f(struct N::Y y, int ZZ)
   // CHECK-CC2: f(int i, int j, <#int k#>)
-  // RUN: true
 }
index c0dbecea61f542a0aee67dc626140359a64a9baa..3e8d75d940d700571913a451696a52b8dcc44f0a 100644 (file)
@@ -22,7 +22,6 @@ void test(enum N::C::Color color) {
   switch (color) {
   case 
     // RUN: clang-cc -fsyntax-only -code-completion-at=%s:23:8 %s -o - | FileCheck -check-prefix=CC1 %s
-    // RUN: true
     // CHECK-CC1: Blue : 0 : N::C::Blue
     // CHECK-CC1-NEXT: Green : 0 : N::C::Green
     // CHECK-CC1-NEXT: Indigo : 0 : N::C::Indigo
index 2068591ec8680dcc5c1d274afdc09695bc987f96..b7a3676170bf2577e1fe8a226e6c02c36b981ec4 100644 (file)
@@ -25,5 +25,4 @@ void test(enum Color color) {
     // CHECK-CC1-NEXT: Indigo : 0
     // CHECK-CC1-NEXT: Orange : 0
     // CHECK-CC1-NEXT: Violet : 0
-    // RUN: true
       
index cea2ab95ab839a82feb077407f67a010ca437af7..3a010a83dee5440e984af5855a490cfc7d333ca0 100644 (file)
@@ -26,4 +26,3 @@ void test(enum N::Color color) {
     // CHECK-CC1-NEXT: Orange : 0 : N::Orange
     // CHECK-CC1-NEXT: Violet : 0 : N::Violet
     
-    // RUN: true
index 6a61296facc14d846e45438ac8c97d18f0270062..d291bbe12bad2e423f429d4f43e684b2fd663c12 100644 (file)
@@ -11,5 +11,4 @@ void f() {
   // RUN: clang-cc -fsyntax-only -code-completion-at=%s:10:8 %s -o - | FileCheck -check-prefix=CC1 %s
   // CHECK-CC1: dyn_cast<<#class X#>>(<#Y *Val#>)
   // CHECK-CC1: sort(<#RandomAccessIterator first#>, <#RandomAccessIterator last#>)
-  // RUN: true
   
index a893a6aab23f936d1c695b2e62b1e9e4622b109c..85292e4d3076c2e8177df949dae175387166a20a 100644 (file)
@@ -6,4 +6,3 @@ void test() {
   // RUN: clang-cc -fsyntax-only -code-completion-at=%s:5:5 %s -o - | FileCheck -check-prefix=CC1 %s
   // CHECK-CC1: f(<#int i#>{#, <#int j#>{#, <#int k#>#}#})
   // CHECK-CC1: f(<#float x#>, <#float y#><#, ...#>)
-  // RUN: true
index ff4dd3087ec3a79963e7e8cb8ab55c416e76d8d8..20d26f2f773a451e4e227599858e81f3913bd161 100644 (file)
@@ -33,5 +33,4 @@ void test(struct Point *p) {
   // CC2: FOO
   // CC2: IDENTITY(<#X#>)
   // CC2: WIBBLE
-  // RUN: true
 }
index fcb1bed6ab4393d98b4a998868ef867d12961054..c9ac58f295d4d026329e08b44114f5fc213a2808 100644 (file)
@@ -10,4 +10,3 @@ void test(struct Point *p) {
   // CHECK-CC1: x
   // CHECK-CC1: y
   // CHECK-CC1: z
-  // RUN: true
index 9e18144cbbd53c3d35fb6d0c10c5dc5980442e3e..e445b4503aa301211b1b9f86bc4fbf794bf3fe23 100644 (file)
@@ -39,5 +39,4 @@ void test(const Proxy &p) {
   // CHECK-CC1: memfun3 : 0 : memfun3(<#int#>)
   // CHECK-CC1: Base1 : 0 : Base1::
   // CHECK-CC1: memfun1 : 0 (Hidden) : Base2::memfun1(<#int#>)
-  // RUN: true
   
index 1c1584863837b991959fcae96a8cfcf03ec9ba82..c1f34178c3ecbba3da8c176093ddedd1d947e52c 100644 (file)
@@ -17,5 +17,4 @@ namespace N2 {
   // CHECK-CC1: I5 : 1
   // CHECK-CC1: N2 : 3
   // CHECK-CC1-NEXT: N4 : 3
-  // RUN: true
   
index bd370ad9cf9fc3e314688d698d03e5c8b9a06717..ff90b85b5a57f1720a5b8ef572cd5e57aa6ae646 100644 (file)
@@ -11,5 +11,4 @@ namespace N2 {
   // RUN: clang-cc -fsyntax-only -code-completion-at=%s:10:12 %s -o - | FileCheck -check-prefix=CC1 %s
   // CHECK-CC1: I1 : 0
   // CHECK-CC1-NEXT: I5 : 0
-  // RUN: true
   
index 7b83eb21aa6cca5f6a5580950a9510af29f8f4cd..8da7c37d95e9d95825e81e653d9b6bff3f7625e8 100644 (file)
@@ -14,5 +14,4 @@ N::
 // CHECK-CC1: A : 0
 // CHECK-CC1: B : 0
 // CHECK-CC1: M : 0
-// RUN: true
 
index 037063dde942e48578838a81487efa5d8031c6c6..20ba5ba3fbc83f1b0e3972b606f1292f578cabf1 100644 (file)
@@ -15,4 +15,3 @@ void f() {
   // CHECK-CC1: Integer : 2
   // CHECK-CC1: T : 2
   // CHECK-CC1: N : 6
-  // RUN: true
index 3fcef355c6f7740289a96cfb1f663c52ed20b0de..680d6dc989c792ca8fae1e934146f0a44951c190 100644 (file)
@@ -9,4 +9,3 @@ void foo() {
   // CHECK-CC1: foo : 2
   // CHECK-NOT-CC1: y : 2
   // CHECK-CC1-NEXT: TYPEDEF : 2
-  // RUN: true
index dd7c721f21b102344ac04a2e9ed13be9ca6d7f71..6d9c1eabd56178476626d0840adc4da8308f2189 100644 (file)
@@ -10,4 +10,3 @@ void test() {
   // RUN: clang-cc -fsyntax-only -code-completion-at=%s:9:7 %s -o - | FileCheck -check-prefix=CC1 %s
   // CHECK-CC1: X : 0
   // CHECK-CC1: Y : 2
-  // RUN: true
index 79b64a623673dfcbd06b439b92f1e5db8496d25c..17c9707db1a32166fbed52edf633264c3fa99333 100644 (file)
@@ -23,4 +23,3 @@ namespace N {
     // CHECK-CC1: Y : 4
     // CHECK-CC1: M : 9 : M::
     // CHECK-CC1: N : 9 : N::
-    // RUN: true
index c7295b8ffa5c15439cc6c6bdd93dd2be938040f3..d35e0bb8dcdea93c857c7915dd7fc8b6d33de225 100644 (file)
@@ -11,7 +11,6 @@ void f() {
   // RUN: clang-cc -fsyntax-only -code-completion-at=%s:10:8 %s -o - | FileCheck -check-prefix=CC1 %s
   // CHECK-CC1: allocator<<#typename T#>>
   // CHECK-CC1: vector<<#typename T#>{#, <#typename Alloc#>#}>
-  // RUN: true
   
   
 
index 260faed7aa72c2a20ffc4ef5fcd252ed7d599829..5af3c4b6d6c98fe7b38b9e74d4dd0d8e3ad23b3d 100644 (file)
@@ -9,4 +9,3 @@ struct
 // CHECK-CC2: X : 1
 // CHECK-CC2: Xa : 1
 // CHECK-CC2: Y : 1
-// RUN: true
index 1979b139af2fa19ce7ca1bca5350db1e713b74c1..57383d5db42795ff0cb177d74f4af47f4617cee8 100644 (file)
@@ -18,4 +18,3 @@ namespace N2 {
     // CHECK-CC1: I5 : 2
     // CHECK-CC1: N2 : 4
     // CHECK-CC1-NEXT: N4 : 4
-    // RUN: true
index 4f6ab9a49cee6daf7c798fc02328bf703b86bdc3..305afda2e6dd4a5f38fbe8dae2345b376d5e1e7d 100644 (file)
@@ -21,5 +21,4 @@ namespace N2 {
     // CHECK-CC1: N2 : 4
     // CHECK-CC1: N3 : 4
     // CHECK-CC1-NEXT: N4 : 4
-    // RUN: true
 
index 19d550f2f86e2e613045af6b3d320f041579e1b2..1290a1ecd33b5d469ea9c825119e4ff6d4c57b82 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: clang -O3 -emit-llvm -S -o %t %s
 // RUN: grep 'ret i64 4294967292' %t | count 2
 // RUN: grep 'ret i64 -4' %t | count 1
-// RUN: true
 
 long long f0(void) {
  struct { unsigned f0 : 32; } x = { 18 };
index 1f1e5edd84839ae8f1790622ae14c64d4c424790..eddf25c74a837f6e9af7bf3e24070b1143d26e7c 100644 (file)
@@ -27,4 +27,3 @@ void (^test1)(void) = ^(void) {
   ^ { i = 1; }();
 };
 
-// RUN: true
index 2a12a9d04c94d67310647bc2bc249699ca5d79c2..c7a70fa237ac32d27d67ea123b32f2ae2b7c18b5 100644 (file)
@@ -19,4 +19,3 @@ void f0() {
   int b = g1_ext();
 }
 
-// RUN: true
index 2af392dcf7b3ff6c4baa581dd50a87245572ba86..966223a39f56b918b5f1ec06265a394a92538e5c 100644 (file)
@@ -13,7 +13,6 @@
 
 // RUN: clang-cc %s -triple powerpc-unknown-unknown -O3 -emit-llvm -o %t
 // RUN: not grep '@g0' %t
-// RUN: true
 
 typedef _Bool BoolTy;
 typedef int ScalarTy;
index 3851c7748b3735461134ad5aada1b0dece41c013..c150759f12bf95cf1c3ff3491c2274004f144e60 100644 (file)
@@ -10,7 +10,6 @@
 // RUN: grep 'ssp' %t
 // RUN: clang -fno-stack-protector -emit-llvm -S -o %t %s
 // RUN: not grep 'ssp' %t
-// RUN: true
 
 int printf(const char * _Format, ...);
 
index 283ad2c2eb5ddb5f23f775d685e5c77b4354ecd6..772077a5964f9b91a54d30bfb6f4435a9fdfc673 100644 (file)
@@ -5,7 +5,6 @@
 // RUN: grep 'declare void @f3(.* noalias sret)$' %t
 // RUN: grep 'declare void @f4(.* byval)$' %t
 // RUN: grep 'declare void @f5(.* byval)$' %t
-// RUN: true
 // PR3835
 
 typedef int T0;
index 8679ebabd1225cad0ab3a37a68aeb2a131a3cd2a..26775f98117c0faae08b1f6065f81bde061e6b30 100644 (file)
@@ -4,4 +4,3 @@
 // RUN: grep 'target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32"' %t
 // RUN: clang-cc -triple x86_64-unknown-unknown -emit-llvm -o %t %s
 // RUN: grep 'target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64"' %t
-// RUN: true
index eaa6a4695aa0d6e503693be88b966d430e0d523b..b72c5850ac2c540ea7fc5cd62735b38a109a245e 100644 (file)
@@ -36,4 +36,3 @@ static int c5[];
 static int func() { return c5[0]; }
 int callfunc() { return func(); }
 
-// RUN: true
index 4b4b86fa9f115378a31fbc9c22d24d911bdd47cd..7c837ba823e961fe2bffa2c0afa338f76a24bcb6 100644 (file)
@@ -22,7 +22,6 @@
 // RUN: grep 'declare void @f_ext()' %t
 // RUN: grep 'define internal void @f_deferred()' %t
 // RUN: grep 'define hidden i32 @f_def()' %t
-// RUN: true
 
 int g_com;
 int g_def = 0;
index b9ea2dde541d9b1a20c8df1975b15f1525aadeba..33f635c31ae19ffe56e0797173c354a1bea39017 100644 (file)
@@ -202,4 +202,3 @@ void f50(struct s50 a0) { }
 struct s51 { vvbp f0; int f1; };
 void f51(struct s51 a0) { }
 
-// RUN: true
index 7f7ee75bea8dd234052ac46cd2d1f10b9c8d2f15..1a848ead356f7d818c7a4c0ebe847cf4ba27524a 100644 (file)
@@ -96,4 +96,3 @@ void f17(float a, float b, float c, float d, float e, float f, float g, float h,
 struct f18_s0 { int f0; };
 void f18(int a, struct f18_s0 f18_arg1) { while (1) {} }
 
-// RUN: true
index a6f72ee0bda26dd409d9d2e239a75f629828643d..c0b53d5f6e55e7e2ebb4187cef50b796d3e05ae4 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 struct A { A(const A&, int i1 = 1); };
 
index 9e4c4f7c5cddd2ee966176d0ca912cbb7ff9e6c7..2f82872d6c9efa87e8ba558d5d47fddb81837cf2 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 
index 6d5ec39444f0e12705aa4af2aed84af3fafecb09..e066927ad7026ba789e56ac300210e8ef1473cab 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 
 extern "C" int printf(...);
index 41e7b11ae00172dc0790b89f4f7e345a4323cbaa..fa8487ac66b9a6965719dff8dc91f3619b183269 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 struct A {
   A(int);
index 83bea514ce29042e8645682f073ef284811e6b0d..dcc9535315ab28a93cb4c329e1bf8ac75af56a79 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 
index d4543bd8697890b7fdd0bcd81cc600b1f65ca12c..c494149d11105a25bc3eb2108f88b6aef0562c95 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 
index c9a15b198aec49eb3d6500cb098ef563aadbe9bb..5160a89754889827f838995ff1520988e5a8c5a1 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 
index 6beb545d1d199546fac6a3af7b4a2a6848727f04..66ec9eac212c1bfd293c37502c9c2762e4ddbcc3 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 // PR4826
 struct A {
index ae6de3bc65d49c57984ae102ec216a73a642a558..c93587675ba1e86e439ae517b6c267c750922de1 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 struct S {
index 72232430eef434e47591079ea03fbaa1b2c04435..7cc8c08444aa9b9fcb860153f275f9225d041b5d 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 
index 4f2c7eed70a417ff9120b8eb75353dde1aa4f151..14fbe30703d30f15feafc7b6a5ee767b9e60161f 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 
index b8663b61d743fa9fd59eb0d41e62c402c1c9aab1..953effe77af183bdf2730903f9d1c60a15c2ff72 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: clang-cc -emit-llvm -o %t %s
 // RUN: grep "_ZN1CC1ERK1C" %t | count 0
 // RUN: grep "_ZN1SC1ERK1S" %t | count 0
-// RUN: true
 
 extern "C" int printf(...);
 
index 03c86dadfcd2b9bb3813051049c3753074b7e653..60552a38931c86066d662d002958eff717d517c6 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 
index bb664333439c3e8e6436934c370c1bd5d3de776d..fd93b7b21e04748e1fd2b5dfd64b046f9bd38696 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 struct A {};
 
index ef1313d3ca811ebbb0292cd16f1d2e5aac7bd1a3..d972d63d3cbcb3786bf7bf36cb029d68b2543453 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 
index 32d21f0b5beaf6c39d7513ff2dc0e9243f23e42a..fef9c03d7ac123537872d56121d85bca7ee0d157 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -O0 -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 -input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 
index af8149ea19430768687b7a9ac16b13b43ef4fd49..70948b0ff933c973245749daf0645078423e1e49 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 extern "C" int printf(...);
 extern "C" void exit(int);
index 614a041257552bd6e6b5a29d6bda16751c6bf0cc..cc86ef4cb502537527b8016a833c93e7cad3b0d7 100644 (file)
@@ -22,7 +22,6 @@ void foo(X<int> &xi, X<float> *xfp, int i, float f) {
   
   // RUN: grep "linkonce_odr.*_ZN1XIfE1hEf" %t | count 0
   
-  // RUN: true
 }
 
 
index 6430cead428aee77359e4799f995158b87bb78ef..52190b9373772c1658b9df0677248d281aa3e570 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -std=c++0x -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 // 13.3.3.2 Ranking implicit conversion sequences
 
 extern "C" int printf(...);
index 4882a8678e2815bf00770fe72cde340f79bda39e..90d6e655d8d89814d23fe99d0cde56b737660a78 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: clang-cc  -S %s -o %t-64.s
 // RUN: clang-cc  -S %s -o %t-32.s
-// RUN: true
 
 extern "C" int printf(...);
 
index 5cc37d30af3af7e090d3473e61170f7534f06daf..1306abf4a63d9924f08aec7769d03077bfb0546d 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: clang-cc -triple x86_64-apple-darwin -std=c++0x -emit-llvm %s -o %t-64.ll
 // RUN: FileCheck -check-prefix LPLL64 --input-file=%t-64.ll %s
-// RUN: true
 
 extern "C" int printf(...);
 
index beccc553a7dc25e07cf05995d4be7551549819ef..ece59b302e2c682ab1056e88bdcb9a4e64c5625c 100644 (file)
@@ -4,7 +4,6 @@
 // RUN: clang-cc -triple x86_64-apple-darwin -std=c++0x -emit-llvm %s -o %t-64.ll
 // RUN: FileCheck -check-prefix LPLL64 --input-file=%t-64.ll %s
 
-// RUN: true
 
 struct B {
   virtual void bar1();
index db611515668b4de0919d85082c7150b55f6b07e9..6b5e7a7a1d2c612caad10aa0f8849b697ff7f108 100644 (file)
@@ -7,4 +7,3 @@ void f1(A a) { }
 // RUN: grep 'define void @_Z2f2v(.struct.A\* noalias sret .agg.result)' %t
 A f2() { return A(); }
 
-// RUN: true
index b945f39080007e775daaa6822d8f2204ac215a0e..e7202320f97e3b48a7570355b301cc4610592b88 100644 (file)
@@ -8,7 +8,6 @@
 // RUN: grep -F '@"OBJC_IVAR_$_I0._y" = global i64 6, section "__DATA, __objc_const", align 8' %t
 // RUN: grep -F '@"OBJC_IVAR_$_I0._b4" = global i64 7, section "__DATA, __objc_const", align 8' %t
 // RUN: grep -F '@"OBJC_IVAR_$_I0." = global' %t | count 0
-// RUN: true
 
 @interface I0 {
   unsigned _b0:4;
index 16665b5ba00b63d0c345dffb0f0409ae5e904822..bb7af99416f35d2e47b32a56a0dd29147a983312 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: clang-cc %s -emit-llvm -o %t -fobjc-gc -fblocks -triple i386-apple-darwin10
 // RUN: grep "objc_assign_strongCast" %t | count 2
-// RUN: true
 
 // This should generate a strong cast.
 
index 1e8c628fe2eb5f83bd725f8734ba32c36b58ac82..def4c9dd7a70eaa4ce90ab0ed84c22494299ac4d 100644 (file)
@@ -33,4 +33,3 @@ void foo(T *P) {
 }
 @end
 
-// RUN: true
index 6411f9746be90c33642f1a1ddb555f63b71e6b04..c18bbd67db55dc24dd45acf28ee3a5b387daf275 100644 (file)
@@ -22,7 +22,6 @@
 // RUN: grep '_OBJC_CLASS_RO_$_I11" = internal global .* { i32 0, i32 5, i32 5, .*' %t
 // RUN: grep '_OBJC_CLASS_RO_$_I12" = internal global .* { i32 0, i32 8, i32 12, .*' %t
 
-// RUN: true
 
 /*
   Compare to:
index 91e77519a9a1680164b8efded530ba3a709bc716..38d29ebabcba89fdf0f6d32c1461ccea08a6f71c 100644 (file)
@@ -4,7 +4,6 @@
 // RUN: grep '@"\\01L_OBJC_CLASS_NAME_.*" = internal global .* c"\\11q\\10\\00"' %t
 // RUN: grep '@"\\01L_OBJC_CLASS_NAME_.*" = internal global .* c"!q\\00"' %t
 // RUN: grep '@"\\01L_OBJC_CLASS_NAME_.*" = internal global .* c"\\01\\14\\00"' %t
-// RUN: true
 
 /*
 
index 8d1a199776ac3956a18f18415eec99a72fa4f21f..2e04d7eaecb1b803a4af8bd8aa4432c03987e5d5 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: clang-cc -fobjc-gc -triple x86_64-apple-darwin -O0 -S %s -o %t-64.s
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
-// RUN: true
 
 @interface NSObject {
   id isa;
index 483481e844be4bc8711daa8c5d130ec1b604dbcc..c987bbb44c0cd67ff7295abd86311cec0bf888ec 100644 (file)
@@ -4,7 +4,6 @@
 // RUN: grep "objc_msg_lookup" %t | count 6
 // RUN: clang-cc -fgnu-runtime -fobjc-nonfragile-abi --emit-llvm -o %t %s
 // RUN: grep "objc_msg_lookup_sender" %t | count 6
-// RUN: true
 
 typedef struct {
   int x;
index 4e2dd9d7a691b50dd7fed29368577a6cace755df..288fa8c65a80b21193fd8ea38034bb6bace80354 100644 (file)
@@ -29,7 +29,6 @@
 // RUN: grep '@"\\01l_OBJC_$_PROP_LIST_A" = internal global .*section "__OBJC,__property,regular,no_dead_strip", align 4' %t
 // RUN: grep "\.lazy_reference \.objc_class_name_J0" %t
 
-// RUN: true
 
 /*
 
index 4ec00388192d5d325d9aef12ec72cfd4e530846b..7dac6f5e95b94dda95e351e9662c3af21eeeb0a5 100644 (file)
@@ -34,7 +34,6 @@
 // RUN: grep '@objc_msgSend_fixup(' %t
 // RUN: grep '@objc_msgSend_fpret(' %t
 
-// RUN: true
 
 /*
 
index f8359f750b22ce08a7ca3ee8f8207e0834b49728..222c013ac525ca1de6f93b494cbe67ffd8b63235 100644 (file)
@@ -20,7 +20,6 @@
 // RUN: grep -F 'define internal void @"\01-[A im0]"' %t
 // RUN: grep -F 'define internal void @"\01-[A(Cat) im1]"' %t
 
-// RUN: true
 
 @interface A
 @end
index 6a6d4ea990d0793d76bd6ee487f2036bfcdbb938..10641862c66622927156b135a58ece9ef743cdbc 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: clang-cc -triple x86_64-apple-darwin10 -emit-llvm -o %t %s
 // RUN: grep '@".01L_OBJC_LABEL_NONLAZY_CLASS_$" = internal global \[1 x .*\] .*@"OBJC_CLASS_$_A".*, section "__DATA, __objc_nlclslist, regular, no_dead_strip", align 8' %t
 // RUN: grep '@".01L_OBJC_LABEL_NONLAZY_CATEGORY_$" = internal global \[1 x .*\] .*@".01l_OBJC_$_CATEGORY_A_$_Cat".*, section "__DATA, __objc_nlcatlist, regular, no_dead_strip", align 8' %t
-// RUN: true
 
 @interface A @end
 @implementation A
index 4cad7028f4918b138e762bf8db4d62bab33ce389..c029d48ea3a0acf777e969db6e273d13941194d0 100644 (file)
@@ -32,7 +32,6 @@
 // RUNX: grep '@"\\01l_OBJC_METACLASS_RO_$_C" = internal global .*, section "__DATA, __objc_const", align 8' %t &&
 // RUNX: grep '@"\\01l_OBJC_PROTOCOL_$_P" = weak hidden global .*, section "__DATA,__datacoal_nt,coalesced", align 8' %t &&
 
-// RUN: true
 
 @interface A @end
 @implementation A
index 024f20efa25cc8ce25f7fdee6fb01cf8f36fae64..795dec0d7ea1f231f4de5f64c4805daae2839cf9 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: clang-cc -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
 // RUN: grep -F '@objc_assign_ivar' %t  | count 14
-// RUN: true
 
 typedef struct {
   id  element;
index 069adc3a453a00d5048616559396a10e0d5e9505..3edaf4c749ed8508236031edef2360f29ef02fc7 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -fblocks -fobjc-gc -triple i386-apple-darwin -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 @interface NSObject 
 - copy;
index 917f191da8594b1d4894546b9d3e9dbc73ea6790..102e7bbdc2221c414d7eb05437c665946f7de91d 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: clang-cc -triple x86_64-apple-darwin10 -fnext-runtime -fobjc-gc -emit-llvm -o %t %s
 // RUN: grep -F '@objc_assign_global' %t  | count 26
-// RUN: true
 
 @class NSObject;
 typedef const struct __CFDictionary * CFDictionaryRef;
index 5879123c299e3ea0a989aeadf659d6f80243b3d5..31b042d0c10dded3f592f02ffbda8e98d2a9bd9c 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: clang-cc -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
 // RUN: grep objc_assign_ivar %t | count 6
-// RUN: true
 
 @interface I @end
 
index dc9ac1fcbef4d529410d01945e18fa5aebc849c1..2606737fc6ecdedd7d7cce6012ce2b935267ac85 100644 (file)
@@ -1,6 +1,5 @@
 // RUN: clang-cc -triple x86_64-apple-darwin10 -fblocks -fnext-runtime -fobjc-gc -emit-llvm -o %t %s
 // RUN: grep -F '@objc_assign_strongCast' %t  | count 4
-// RUN: true
 
 @interface DSATextSearch @end
 
index 33e4150158579939388672faab3ad51d639544e2..e8a227b7f835abb1543c981782a13913ac097196 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: grep -F '@objc_assign_global' %t  | count 7
 // RUN: grep -F '@objc_assign_ivar' %t  | count 5
 // RUN: grep -F '@objc_assign_strongCast' %t  | count 8
-// RUN: true
 
 extern id **somefunc(void);
 extern id *somefunc2(void);
index 2c43e3174ec79d533e3086c43ed428814a249cda..9b157424514b576439d5431fb8fc36ade3b52281 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: clang-cc -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
 // RUN: grep objc_assign_ivar %t | count 3
 // RUN: grep objc_assign_strongCast %t | count 6
-// RUN: true
 
 struct Slice {
     void *__strong * items;
index e9910a468c5ba11d666efcb01c7ca4b193412262..4c863f4a763931aeaf3a17d2eb66efe74cbd7a99 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: clang-cc -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
 // RUN: grep objc_assign_global %t | count 3
 // RUN: grep objc_assign_strongCast %t | count 2
-// RUN: true
 
 @interface A
 @end
index 2aecdcacb170b0aacd8823b4d6b3cddbe1656f8c..2e51b44093a3c42967026503ddfa30d3aba90d64 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: clang-cc -triple x86_64-apple-darwin10 -fobjc-gc -emit-llvm -o %t %s
 // RUN: grep objc_assign_ivar %t | count 0
 // RUN: grep objc_assign_strongCast %t | count 5
-// RUN: true
 
 @interface TestUnarchiver 
 {
index 63ff87a092bbbde98c9b4919c144b4321fbaf9de..9a5416d8466f81ac103e0d830725e42c8b0803aa 100644 (file)
@@ -1,7 +1,6 @@
 // RUN: clang-cc -triple x86_64-apple-darwin10 -fnext-runtime -fobjc-gc -emit-llvm -o %t %s
 // RUN: grep -F '@objc_assign_global' %t  | count 21
 // RUN: grep -F '@objc_assign_ivar' %t  | count 11
-// RUN: true
 
 
 typedef const struct __CFDictionary * CFDictionaryRef;
index 6a05a6d325907588b99b59991a6420ac28e6f236..d0ff7414719a336cfed525297f40beb84e9019fb 100644 (file)
@@ -2,7 +2,6 @@
 // RUN: FileCheck -check-prefix LP64 --input-file=%t-64.s %s
 // RUN: clang-cc -triple i386-apple-darwin -S %s -o %t-32.s
 // RUN: FileCheck -check-prefix LP32 --input-file=%t-32.s %s
-// RUN: true
 
 @protocol MyProtocol
 @end
index 709ef45c1e848f05f4a2b3893c1931c96332b834..54ca19ceb46a9d773ca22966e37db814e0521d7a 100644 (file)
@@ -45,4 +45,3 @@ void f2() { id x = @protocol(P5); } // This generates a forward
 @implementation I1 -im1 { return 0; }; @end
 void f3() { id x = @protocol(P6); }
 
-// RUN: true
index ed5e2da68c8bf0a361a63b5287fba07950897740..23990e06d39316aee097ac9604e48e780ededbfd 100644 (file)
@@ -20,4 +20,3 @@
 // <rdar://problem/7181838> clang 1.0 fails to compile Python 2.6
 // RUN: clang -ccc-host-triple x86_64-apple-darwin9 -### -S %s -mmacosx-version-min=10.4
 
-// RUN: true
index 1bba020dcc0bfa8d24f1f8d6f2259ed0b415eb7b..ba6f5c63d4d4b86a329fb408b6a7ee54adbc3eac 100644 (file)
@@ -6,5 +6,4 @@
 // RUN: not clang -ccc-host-triple i386-apple-darwin9 -m32 -Xarch_i386 -o -Xarch_i386 -S %s -S -Xarch_i386 -o 2> %t.log
 // RUN: grep "error: invalid Xarch argument: '-Xarch_i386 -o'" %t.log | count 2
 // RUN: grep "error: invalid Xarch argument: '-Xarch_i386 -S'" %t.log
-// RUN: true
 
index 068c95a4b277b0c42222087ea18d634a1c72768c..41d6a7ced1759d8475b1bd1823c4f473d2e8bb97 100644 (file)
@@ -53,4 +53,3 @@
 // RUN: grep '"darwin::Assemble", inputs: \[".*\.s"\], output: ".*\.o"' %t
 // RUN: grep '"darwin::Link", inputs: \[".*\.o"\], output: "a.out"' %t
 
-// RUN: true
index 237a71329f856462f143d16c5b15cfe84f1a13a9..e9ba10dd5d567a911e4a7c2968e8f919e6307350 100644 (file)
@@ -13,4 +13,3 @@
 // RUN: grep '"--mcpu=yonah"' %t.log
 // RUN: clang -ccc-host-triple x86_64-apple-darwin9 -### -S %s -o %t.s 2> %t.log
 // RUN: grep '"--mcpu=core2"' %t.log
-// RUN: true
index 199f3e990e735b28d75a189d02c13e7b3dc71bc9..ff0373698796aa49a4a9160b54df9ad2951ab355 100644 (file)
@@ -9,4 +9,3 @@
 // RUN: grep -F '"--fmath-errno=0"' %t
 // RUN: grep -F '"-fno-show-source-location"' %t
 // RUN: grep -F '"-fshort-wchar"' %t
-// RUN: true
index 529a0f383b60083bc82bca92e7e8f38476df597a..1f4335855b02d146cae93d4363a320e54bba7be2 100644 (file)
@@ -2,5 +2,4 @@
 // RUN: grep ' ".*cc1" "-E" "-nostdinc" "-v" "-I" "ARG0" "-F" "ARG1" "-I" "ARG2" "-P" "-MD" "/tmp/OUTPUTNAME.d" "-MF" "ARG3" "-MG" "-MP" "-MQ" "/tmp/OUTPUTNAME" "-remap" "-dD" "-H" "-D__STATIC__" "-D_REENTRANT" "-D" "ARG4" "-U" "ARG5" "-A" "ARG6" "-D" "ARG7" "-U" "ARG8" "-A" "ARG9" "-include" "ARG10" ".*darwin-cc.c" "-D_MUDFLAP" "-include" "mf-runtime.h" "-mmacosx-version-min=10.6.0" "-m32" "-mkernel" "-mtune=core2" "-ansi" "-std=c99" "-trigraphs" "-Werror" "-pedantic" "-Wmost" "-w" "-fast" "-fno-eliminate-unused-debug-symbols" "-fFOO" "-fmudflap" "-O2" "-undef" "-fpch-preprocess" "-o" ".*darwin-cc.i"' %t.log
 // RUN: grep ' ".*cc1" "-fpreprocessed" ".*darwin-cc.i" "-O3" "-dumpbase" ".*darwin-cc.c" "-dA" "-mmacosx-version-min=10.6.0" "-m32" "-mkernel" "-mtune=core2" "-ansi" "-aFOO" "-auxbase-strip" "/tmp/OUTPUTNAME" "-g" "-g0" "-g" "-g3" "-O2" "-Werror" "-pedantic" "-Wmost" "-w" "-ansi" "-std=c99" "-trigraphs" "-version" "-p" "-fast" "-fno-eliminate-unused-debug-symbols" "-fFOO" "-fmudflap" "-undef" "-fno-ident" "-o" "/tmp/OUTPUTNAME" "--param" "a=b" "-fno-builtin" "-fno-merge-constants" "-fprofile-arcs" "-ftest-coverage"' %t.log
 
-// RUN: true
 
index b0334f010ed5faabe938d490866ce87b9633ca9c..04f35be09f1db9f6a0fa6bedbe0785e35e950123 100644 (file)
@@ -39,6 +39,5 @@
 // RUN: clang -ccc-host-triple i386-apple-darwin9 -### -arch i386 -arch x86_64 -g %s 2> %t.log
 // RUN: grep dsymutil %t.log | count 0
 
-// RUN: true
 
 
index 7e6e71bada888e006dc57275d933a79d8ea90965..923c30ea95cea19201b55abcf479beaeffe87e76 100644 (file)
@@ -2,4 +2,3 @@
 // RUN: clang --help-hidden
 // RUN: clang -dumpversion
 // RUN: clang -print-search-dirs
-// RUN: true
index 79eaa836b5c45daa630109235baa92b8cfdd04d8..041b4246180878083cddfaeff29d8d53cb41ec6b 100644 (file)
@@ -22,4 +22,3 @@
 // RUN: clang %s -emit-llvm -S -### 2> %t.log
 // RUN: grep '"-o" ".*lto\.s" "-x" "c" ".*lto\.c"' %t.log
 
-// RUN: true
index e44df30fc2cdc904942f029209abf33f50f7478d..8e37128e3ed94bd8600454a9f3fefb7fd1b2dd32 100644 (file)
@@ -19,6 +19,5 @@
 // RUN: clang -ccc-print-options -Wally 2> %t
 // RUN: grep 'Option 0 - Name: "-W", Values: {"ally"}' %t
 
-// RUN: true
 
 
index 6107db9f1cc3c8ba33b396bfdd87da1c1fcc0099..d03bff9a77b1c941aa5e40c3b8c5bbabac21f6cc 100644 (file)
@@ -76,4 +76,3 @@
 // DARWIN2: 1: preprocessor, {0}, assembler
 // DARWIN2: 2: assembler, {1}, object
 
-// RUN: true
index e7a5ca6054f91defd1be3818a3eba2a36f4f8c0b..9a6fc9b214255691b3ae3ab94446f880d45a51b7 100644 (file)
@@ -4,7 +4,6 @@
 // RUN: clang -E -o %t -CC %s
 // RUN: grep '^int x; // comment' %t
 // RUN: grep '^x /\* comment \*/ x /\* comment \*/' %t
-// RUN: true
 
 int x; // comment
 
index 7c06d4b05131983b247f52395a2ecbe76d09fa94..4896aecdfae5b4c7216d2c05ba0d8c3d64392dd2 100644 (file)
@@ -20,4 +20,3 @@
 // RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1050' | count 1
 // RUN: clang -ccc-host-triple i686-apple-darwin9 -mmacosx-version-min=10.6 -dM -E -o %t %s
 // RUN: grep '__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__' %t | grep '1060' | count 1
-// RUN: true
index 24761b54210ce7de12e8db0853e387e9dfcb89c9..2d9fef40035b6d45af8562fc2befb561a99fc235 100644 (file)
@@ -14,5 +14,4 @@ _Pragma("mark")
 // RUN: grep "//#pragma mark mark" %t
 #pragma mark mark
 
-// RUN: true
 
index 212a7d89f87793da17bbb74201c716fda431fc0d..a2bc8c54edc78f2557834256961a100177bba914 100644 (file)
@@ -1,6 +1,6 @@
 // FIXME: Disabled, appears to have undefined behavior, and needs to be updated to match new warnings.
-// RUN: true
-// RUNX: clang-cc -fsyntax-only -verify %s
+// RUN: clang-cc -fsyntax-only -verify %s
+// XFAIL: *
 
 namespace A {
     int VA;
index c99e7d2cf3457bd21035df9e7f5446ed4a8923ee..693d5b81a17f90ed9f18ccda268cd41858c04069 100644 (file)
@@ -72,4 +72,3 @@
 11: T11(b)
 // CHECK-Identifiers-True: 11: #0
 
-// RUN: true
index fdbeebfccad15429ee660aff0a3a88f5cac482dd..6f8f61b6358f9fcedc3fce7ba6eceb25f20be019 100644 (file)
 // X86_64:#define __x86_64 1
 // X86_64:#define __x86_64__ 1
 //
-// RUN: true
index 72cf1b1352155b81d590da8874c76651b26fa956..b8068faac8c090754039630907319fd6582947bf 100644 (file)
@@ -7,4 +7,3 @@
 // RUN: clang -ccc-host-triple i386-unknown-unknown -fPIC -dM -E -o %t %s
 // RUN: grep '#define __PIC__ 2' %t | count 1
 // RUN: grep '#define __pic__ 2' %t | count 1
-// RUN: true
index 94ef2116afc1a006c61a6ffe869bff70b0669ac5..c732bf51deeadbebcb5a51b574bfeedb7cdb476f 100644 (file)
 // X86_64:INTMAX_C_(0) (0LL)
 // X86_64:UINTMAX_C_(0) (0ULL)
 //
-// RUN: true
 
 #include <stdint.h>
 
index 0dd38a67cc8b2d241d79c08e866b04d86f541f3b..f8574e25d4747eae7e008f46d62f42def1acb000 100644 (file)
@@ -30,6 +30,5 @@
 // RUN: grep '#define __SSE__ 1' %t
 // RUN: grep '#define __SSSE3__ 1' %t | count 0
 
-// RUN: true