diff options
author | Richard Trieu <rtrieu@google.com> | 2013-04-09 22:06:27 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2013-04-09 22:06:27 +0000 |
commit | 8da488dc0bf10d0b6b8861653e8014f0d06fe322 (patch) | |
tree | c557a4a17a8e3d78d64fd4e5da4c7262c0d6ea6e | |
parent | 1cf97e71de6292e9c06cb7d992cf5493db7fc59b (diff) |
Remove outdated run lines from tests.
These run lines originally tested that the fix-its were properly applied.
Originally, the fixits were attached to warnings and were applied by -fixit.
Now, the fixits are attached to notes, so nothing happens. These run lines
still manage to pass since Clang will produce an empty output which gets piped
back to Clang. Then Clang produces no error on an empty input.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@179131 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Sema/parentheses.c | 1 | ||||
-rw-r--r-- | test/Sema/parentheses.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/test/Sema/parentheses.c b/test/Sema/parentheses.c index c3b3aa77c5..981ad1c3bc 100644 --- a/test/Sema/parentheses.c +++ b/test/Sema/parentheses.c @@ -1,5 +1,4 @@ // RUN: %clang_cc1 -Wparentheses -fsyntax-only -verify %s -// RUN: %clang_cc1 -Wparentheses -fixit %s -o - | %clang_cc1 -Wparentheses -Werror - // Test the various warnings under -Wparentheses void if_assign(void) { diff --git a/test/Sema/parentheses.cpp b/test/Sema/parentheses.cpp index da37dd397b..145414a53a 100644 --- a/test/Sema/parentheses.cpp +++ b/test/Sema/parentheses.cpp @@ -1,5 +1,4 @@ // RUN: %clang_cc1 -Wparentheses -fsyntax-only -verify %s -// RUN: %clang_cc1 -Wparentheses -fixit %s -o - | %clang_cc1 -Wparentheses -Werror - bool someConditionFunc(); |