diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-08 01:47:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-08 01:47:25 +0000 |
commit | 2475d76920b43014e661690836642ca3c9967179 (patch) | |
tree | 2d601198b4957d952afd4fb641e9b9767a3469bc /test/CodeCompletion | |
parent | 1787b70a928b481fb2333d6c14cf91de26f4609e (diff) |
Remove RUN: true lines.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeCompletion')
-rw-r--r-- | test/CodeCompletion/call.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/enum-switch-case-qualified.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/enum-switch-case.c | 1 | ||||
-rw-r--r-- | test/CodeCompletion/enum-switch-case.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/function-templates.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/functions.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/macros.c | 1 | ||||
-rw-r--r-- | test/CodeCompletion/member-access.c | 1 | ||||
-rw-r--r-- | test/CodeCompletion/member-access.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/namespace-alias.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/namespace.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/nested-name-specifier.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/operator.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/ordinary-name.c | 1 | ||||
-rw-r--r-- | test/CodeCompletion/tag.c | 1 | ||||
-rw-r--r-- | test/CodeCompletion/tag.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/templates.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/truncation.c | 1 | ||||
-rw-r--r-- | test/CodeCompletion/using-namespace.cpp | 1 | ||||
-rw-r--r-- | test/CodeCompletion/using.cpp | 1 |
20 files changed, 0 insertions, 20 deletions
diff --git a/test/CodeCompletion/call.cpp b/test/CodeCompletion/call.cpp index 67c86d9a81..8c7bf83e2a 100644 --- a/test/CodeCompletion/call.cpp +++ b/test/CodeCompletion/call.cpp @@ -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 } diff --git a/test/CodeCompletion/enum-switch-case-qualified.cpp b/test/CodeCompletion/enum-switch-case-qualified.cpp index c0dbecea61..3e8d75d940 100644 --- a/test/CodeCompletion/enum-switch-case-qualified.cpp +++ b/test/CodeCompletion/enum-switch-case-qualified.cpp @@ -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 diff --git a/test/CodeCompletion/enum-switch-case.c b/test/CodeCompletion/enum-switch-case.c index 2068591ec8..b7a3676170 100644 --- a/test/CodeCompletion/enum-switch-case.c +++ b/test/CodeCompletion/enum-switch-case.c @@ -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 diff --git a/test/CodeCompletion/enum-switch-case.cpp b/test/CodeCompletion/enum-switch-case.cpp index cea2ab95ab..3a010a83de 100644 --- a/test/CodeCompletion/enum-switch-case.cpp +++ b/test/CodeCompletion/enum-switch-case.cpp @@ -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 diff --git a/test/CodeCompletion/function-templates.cpp b/test/CodeCompletion/function-templates.cpp index 6a61296fac..d291bbe12b 100644 --- a/test/CodeCompletion/function-templates.cpp +++ b/test/CodeCompletion/function-templates.cpp @@ -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 diff --git a/test/CodeCompletion/functions.cpp b/test/CodeCompletion/functions.cpp index a893a6aab2..85292e4d30 100644 --- a/test/CodeCompletion/functions.cpp +++ b/test/CodeCompletion/functions.cpp @@ -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 diff --git a/test/CodeCompletion/macros.c b/test/CodeCompletion/macros.c index ff4dd3087e..20d26f2f77 100644 --- a/test/CodeCompletion/macros.c +++ b/test/CodeCompletion/macros.c @@ -33,5 +33,4 @@ void test(struct Point *p) { // CC2: FOO // CC2: IDENTITY(<#X#>) // CC2: WIBBLE - // RUN: true } diff --git a/test/CodeCompletion/member-access.c b/test/CodeCompletion/member-access.c index fcb1bed6ab..c9ac58f295 100644 --- a/test/CodeCompletion/member-access.c +++ b/test/CodeCompletion/member-access.c @@ -10,4 +10,3 @@ void test(struct Point *p) { // CHECK-CC1: x // CHECK-CC1: y // CHECK-CC1: z - // RUN: true diff --git a/test/CodeCompletion/member-access.cpp b/test/CodeCompletion/member-access.cpp index 9e18144cbb..e445b4503a 100644 --- a/test/CodeCompletion/member-access.cpp +++ b/test/CodeCompletion/member-access.cpp @@ -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 diff --git a/test/CodeCompletion/namespace-alias.cpp b/test/CodeCompletion/namespace-alias.cpp index 1c15848638..c1f34178c3 100644 --- a/test/CodeCompletion/namespace-alias.cpp +++ b/test/CodeCompletion/namespace-alias.cpp @@ -17,5 +17,4 @@ namespace N2 { // CHECK-CC1: I5 : 1 // CHECK-CC1: N2 : 3 // CHECK-CC1-NEXT: N4 : 3 - // RUN: true diff --git a/test/CodeCompletion/namespace.cpp b/test/CodeCompletion/namespace.cpp index bd370ad9cf..ff90b85b5a 100644 --- a/test/CodeCompletion/namespace.cpp +++ b/test/CodeCompletion/namespace.cpp @@ -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 diff --git a/test/CodeCompletion/nested-name-specifier.cpp b/test/CodeCompletion/nested-name-specifier.cpp index 7b83eb21aa..8da7c37d95 100644 --- a/test/CodeCompletion/nested-name-specifier.cpp +++ b/test/CodeCompletion/nested-name-specifier.cpp @@ -14,5 +14,4 @@ N:: // CHECK-CC1: A : 0 // CHECK-CC1: B : 0 // CHECK-CC1: M : 0 -// RUN: true diff --git a/test/CodeCompletion/operator.cpp b/test/CodeCompletion/operator.cpp index 037063dde9..20ba5ba3fb 100644 --- a/test/CodeCompletion/operator.cpp +++ b/test/CodeCompletion/operator.cpp @@ -15,4 +15,3 @@ void f() { // CHECK-CC1: Integer : 2 // CHECK-CC1: T : 2 // CHECK-CC1: N : 6 - // RUN: true diff --git a/test/CodeCompletion/ordinary-name.c b/test/CodeCompletion/ordinary-name.c index 3fcef355c6..680d6dc989 100644 --- a/test/CodeCompletion/ordinary-name.c +++ b/test/CodeCompletion/ordinary-name.c @@ -9,4 +9,3 @@ void foo() { // CHECK-CC1: foo : 2 // CHECK-NOT-CC1: y : 2 // CHECK-CC1-NEXT: TYPEDEF : 2 - // RUN: true diff --git a/test/CodeCompletion/tag.c b/test/CodeCompletion/tag.c index dd7c721f21..6d9c1eabd5 100644 --- a/test/CodeCompletion/tag.c +++ b/test/CodeCompletion/tag.c @@ -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 diff --git a/test/CodeCompletion/tag.cpp b/test/CodeCompletion/tag.cpp index 79b64a6236..17c9707db1 100644 --- a/test/CodeCompletion/tag.cpp +++ b/test/CodeCompletion/tag.cpp @@ -23,4 +23,3 @@ namespace N { // CHECK-CC1: Y : 4 // CHECK-CC1: M : 9 : M:: // CHECK-CC1: N : 9 : N:: - // RUN: true diff --git a/test/CodeCompletion/templates.cpp b/test/CodeCompletion/templates.cpp index c7295b8ffa..d35e0bb8dc 100644 --- a/test/CodeCompletion/templates.cpp +++ b/test/CodeCompletion/templates.cpp @@ -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 diff --git a/test/CodeCompletion/truncation.c b/test/CodeCompletion/truncation.c index 260faed7aa..5af3c4b6d6 100644 --- a/test/CodeCompletion/truncation.c +++ b/test/CodeCompletion/truncation.c @@ -9,4 +9,3 @@ struct // CHECK-CC2: X : 1 // CHECK-CC2: Xa : 1 // CHECK-CC2: Y : 1 -// RUN: true diff --git a/test/CodeCompletion/using-namespace.cpp b/test/CodeCompletion/using-namespace.cpp index 1979b139af..57383d5db4 100644 --- a/test/CodeCompletion/using-namespace.cpp +++ b/test/CodeCompletion/using-namespace.cpp @@ -18,4 +18,3 @@ namespace N2 { // CHECK-CC1: I5 : 2 // CHECK-CC1: N2 : 4 // CHECK-CC1-NEXT: N4 : 4 - // RUN: true diff --git a/test/CodeCompletion/using.cpp b/test/CodeCompletion/using.cpp index 4f6ab9a49c..305afda2e6 100644 --- a/test/CodeCompletion/using.cpp +++ b/test/CodeCompletion/using.cpp @@ -21,5 +21,4 @@ namespace N2 { // CHECK-CC1: N2 : 4 // CHECK-CC1: N3 : 4 // CHECK-CC1-NEXT: N4 : 4 - // RUN: true |