[cfe-commits] r88758 - in /cfe/trunk/test/FixIt: fixit-at.c fixit-c90.c fixit-errors-1.c fixit-errors.c fixit-objc.m fixit-pmem.cpp fixit.c fixit.cpp

Daniel Dunbar daniel at zuster.org
Fri Nov 13 20:39:42 PST 2009


Author: ddunbar
Date: Fri Nov 13 22:39:42 2009
New Revision: 88758

URL: http://llvm.org/viewvc/llvm-project?rev=88758&view=rev
Log:
Update FixIt tests to make it more obvious they use a separate mode.

Modified:
    cfe/trunk/test/FixIt/fixit-at.c
    cfe/trunk/test/FixIt/fixit-c90.c
    cfe/trunk/test/FixIt/fixit-errors-1.c
    cfe/trunk/test/FixIt/fixit-errors.c
    cfe/trunk/test/FixIt/fixit-objc.m
    cfe/trunk/test/FixIt/fixit-pmem.cpp
    cfe/trunk/test/FixIt/fixit.c
    cfe/trunk/test/FixIt/fixit.cpp

Modified: cfe/trunk/test/FixIt/fixit-at.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/fixit-at.c?rev=88758&r1=88757&r2=88758&view=diff

==============================================================================
--- cfe/trunk/test/FixIt/fixit-at.c (original)
+++ cfe/trunk/test/FixIt/fixit-at.c Fri Nov 13 22:39:42 2009
@@ -1,4 +1,4 @@
-// RUN: clang-cc -fsyntax-only -fixit-at=fixit-at.c:3:1 %s -o - | clang-cc -verify -x c -
+// RUN: clang-cc -fixit-at=fixit-at.c:3:1 %s -o - | clang-cc -verify -x c -
 
 _Complex cd;
 

Modified: cfe/trunk/test/FixIt/fixit-c90.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/fixit-c90.c?rev=88758&r1=88757&r2=88758&view=diff

==============================================================================
--- cfe/trunk/test/FixIt/fixit-c90.c (original)
+++ cfe/trunk/test/FixIt/fixit-c90.c Fri Nov 13 22:39:42 2009
@@ -1,4 +1,4 @@
-/* RUN: clang-cc -fsyntax-only -std=c90 -pedantic -fixit %s -o - | clang-cc -pedantic -x c -std=c90 -Werror -
+/* RUN: clang-cc -std=c90 -pedantic -fixit %s -o - | clang-cc -pedantic -x c -std=c90 -Werror -
  */
 
 /* This is a test of the various code modification hints that are

Modified: cfe/trunk/test/FixIt/fixit-errors-1.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/fixit-errors-1.c?rev=88758&r1=88757&r2=88758&view=diff

==============================================================================
--- cfe/trunk/test/FixIt/fixit-errors-1.c (original)
+++ cfe/trunk/test/FixIt/fixit-errors-1.c Fri Nov 13 22:39:42 2009
@@ -1,4 +1,4 @@
-// RUN: clang-cc -fsyntax-only -pedantic -fixit %s -o - | clang-cc -pedantic -Werror -x c -
+// RUN: clang-cc -pedantic -fixit %s -o - | clang-cc -pedantic -Werror -x c -
 
 /* This is a test of the various code modification hints that are
    provided as part of warning or extension diagnostics. All of the

Modified: cfe/trunk/test/FixIt/fixit-errors.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/fixit-errors.c?rev=88758&r1=88757&r2=88758&view=diff

==============================================================================
--- cfe/trunk/test/FixIt/fixit-errors.c (original)
+++ cfe/trunk/test/FixIt/fixit-errors.c Fri Nov 13 22:39:42 2009
@@ -1,4 +1,4 @@
-// RUN: clang-cc -fsyntax-only -pedantic -fixit %s -o - | clang-cc -pedantic -Werror -x c -
+// RUN: clang-cc -pedantic -fixit %s -o - | clang-cc -pedantic -Werror -x c -
 
 /* This is a test of the various code modification hints that are
    provided as part of warning or extension diagnostics. All of the

Modified: cfe/trunk/test/FixIt/fixit-objc.m
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/fixit-objc.m?rev=88758&r1=88757&r2=88758&view=diff

==============================================================================
--- cfe/trunk/test/FixIt/fixit-objc.m (original)
+++ cfe/trunk/test/FixIt/fixit-objc.m Fri Nov 13 22:39:42 2009
@@ -1,5 +1,5 @@
-// RUN: clang-cc -fsyntax-only -pedantic -fixit %s -o %t
-// RUN: clang-cc -fsyntax-only -pedantic -x objective-c %t -verify
+// RUN: clang-cc -pedantic -fixit %s -o %t
+// RUN: clang-cc -pedantic -x objective-c %t -verify
 
 /* This is a test of the various code modification hints that are
    provided as part of warning or extension diagnostics. All of the

Modified: cfe/trunk/test/FixIt/fixit-pmem.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/fixit-pmem.cpp?rev=88758&r1=88757&r2=88758&view=diff

==============================================================================
--- cfe/trunk/test/FixIt/fixit-pmem.cpp (original)
+++ cfe/trunk/test/FixIt/fixit-pmem.cpp Fri Nov 13 22:39:42 2009
@@ -1,4 +1,4 @@
-// RUN: clang-cc -fsyntax-only -pedantic -fixit %s -o - | clang-cc -fsyntax-only -pedantic -Werror -x c++ -
+// RUN: clang-cc -pedantic -fixit %s -o - | clang-cc -fsyntax-only -pedantic -Werror -x c++ -
 
 /* This is a test of the various code modification hints that are
    provided as part of warning or extension diagnostics. All of the

Modified: cfe/trunk/test/FixIt/fixit.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/fixit.c?rev=88758&r1=88757&r2=88758&view=diff

==============================================================================
--- cfe/trunk/test/FixIt/fixit.c (original)
+++ cfe/trunk/test/FixIt/fixit.c Fri Nov 13 22:39:42 2009
@@ -1,4 +1,4 @@
-// RUN: clang-cc -fsyntax-only -pedantic -fixit %s -o - | clang-cc -pedantic -Werror -x c -
+// RUN: clang-cc -pedantic -fixit %s -o - | clang-cc -pedantic -Werror -x c -
 
 /* This is a test of the various code modification hints that are
    provided as part of warning or extension diagnostics. All of the

Modified: cfe/trunk/test/FixIt/fixit.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/FixIt/fixit.cpp?rev=88758&r1=88757&r2=88758&view=diff

==============================================================================
--- cfe/trunk/test/FixIt/fixit.cpp (original)
+++ cfe/trunk/test/FixIt/fixit.cpp Fri Nov 13 22:39:42 2009
@@ -1,4 +1,4 @@
-// RUN: clang-cc -fsyntax-only -pedantic -fixit %s -o - | clang-cc -fsyntax-only -pedantic -Werror -x c++ -
+// RUN: clang-cc -pedantic -fixit %s -o - | clang-cc -fsyntax-only -pedantic -Werror -x c++ -
 
 /* This is a test of the various code modification hints that are
    provided as part of warning or extension diagnostics. All of the





More information about the cfe-commits mailing list