diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-24 02:24:46 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-24 02:24:46 +0000 |
commit | d7d5f0223bd30dfd618762349c6209dd1d5ea3e6 (patch) | |
tree | 3eaf71c556318c5f755f0124f122342fc04ddb64 /test/Lexer | |
parent | f94e215e4a67e5439d56a67bbe470c7860d4b9a6 (diff) |
Rename clang to clang-cc.
Tests and drivers updated, still need to shuffle dirs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67602 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Lexer')
-rw-r--r-- | test/Lexer/11-27-2007-FloatLiterals.c | 4 | ||||
-rw-r--r-- | test/Lexer/badstring_in_if0.c | 2 | ||||
-rw-r--r-- | test/Lexer/block_cmt_end.c | 10 | ||||
-rw-r--r-- | test/Lexer/c90.c | 2 | ||||
-rw-r--r-- | test/Lexer/constants.c | 2 | ||||
-rw-r--r-- | test/Lexer/cxx0x_keyword.cpp | 2 | ||||
-rw-r--r-- | test/Lexer/cxx0x_keyword_as_cxx98.cpp | 2 | ||||
-rw-r--r-- | test/Lexer/digraph.c | 2 | ||||
-rw-r--r-- | test/Lexer/dollar-idents.c | 4 | ||||
-rw-r--r-- | test/Lexer/escape_newline.c | 6 | ||||
-rw-r--r-- | test/Lexer/multiple-include.c | 2 | ||||
-rw-r--r-- | test/Lexer/number.c | 2 | ||||
-rw-r--r-- | test/Lexer/numeric-literal-trash.c | 2 | ||||
-rw-r--r-- | test/Lexer/pragma-mark.c | 2 | ||||
-rw-r--r-- | test/Lexer/rdr-6096838-2.c | 2 | ||||
-rw-r--r-- | test/Lexer/rdr-6096838.c | 4 | ||||
-rw-r--r-- | test/Lexer/token-concat.c | 2 | ||||
-rw-r--r-- | test/Lexer/unknown-char.c | 2 |
18 files changed, 27 insertions, 27 deletions
diff --git a/test/Lexer/11-27-2007-FloatLiterals.c b/test/Lexer/11-27-2007-FloatLiterals.c index c0e21546a8..f3ea7cbaf9 100644 --- a/test/Lexer/11-27-2007-FloatLiterals.c +++ b/test/Lexer/11-27-2007-FloatLiterals.c @@ -1,5 +1,5 @@ -// RUN: clang %s -emit-llvm -o - | grep 0x3BFD83C940000000 | count 2 && -// RUN: clang %s -emit-llvm -o - | grep 2.000000e+32 | count 2 +// RUN: clang-cc %s -emit-llvm -o - | grep 0x3BFD83C940000000 | count 2 && +// RUN: clang-cc %s -emit-llvm -o - | grep 2.000000e+32 | count 2 float F = 1e-19f; double D = 2e32; diff --git a/test/Lexer/badstring_in_if0.c b/test/Lexer/badstring_in_if0.c index 714f89b386..5fa5a2bb24 100644 --- a/test/Lexer/badstring_in_if0.c +++ b/test/Lexer/badstring_in_if0.c @@ -1,4 +1,4 @@ -// RUN: clang -E %s 2>&1 | not grep error +// RUN: clang-cc -E %s 2>&1 | not grep error #if 0 " diff --git a/test/Lexer/block_cmt_end.c b/test/Lexer/block_cmt_end.c index d049c02872..65d948f7fd 100644 --- a/test/Lexer/block_cmt_end.c +++ b/test/Lexer/block_cmt_end.c @@ -1,9 +1,9 @@ /* - RUN: clang -E -trigraphs %s | grep bar && - RUN: clang -E -trigraphs %s | grep foo && - RUN: clang -E -trigraphs %s | not grep abc && - RUN: clang -E -trigraphs %s | not grep xyz && - RUN: clang -fsyntax-only -trigraphs -verify %s + RUN: clang-cc -E -trigraphs %s | grep bar && + RUN: clang-cc -E -trigraphs %s | grep foo && + RUN: clang-cc -E -trigraphs %s | not grep abc && + RUN: clang-cc -E -trigraphs %s | not grep xyz && + RUN: clang-cc -fsyntax-only -trigraphs -verify %s */ // This is a simple comment, /*/ does not end a comment, the trailing */ does. diff --git a/test/Lexer/c90.c b/test/Lexer/c90.c index d76c73ddc3..d743d68cd5 100644 --- a/test/Lexer/c90.c +++ b/test/Lexer/c90.c @@ -1,4 +1,4 @@ -/* RUN: clang -std=c90 -fsyntax-only %s -verify -pedantic-errors +/* RUN: clang-cc -std=c90 -fsyntax-only %s -verify -pedantic-errors */ enum { cast_hex = (long) ( diff --git a/test/Lexer/constants.c b/test/Lexer/constants.c index 6d7ca19cdb..014a8f1235 100644 --- a/test/Lexer/constants.c +++ b/test/Lexer/constants.c @@ -1,4 +1,4 @@ -/* RUN: clang -fsyntax-only -verify %s +/* RUN: clang-cc -fsyntax-only -verify %s */ int x = 000000080; /* expected-error {{invalid digit}} */ diff --git a/test/Lexer/cxx0x_keyword.cpp b/test/Lexer/cxx0x_keyword.cpp index a54d26343b..412c25e83c 100644 --- a/test/Lexer/cxx0x_keyword.cpp +++ b/test/Lexer/cxx0x_keyword.cpp @@ -1,2 +1,2 @@ -// RUN: clang -fsyntax-only -verify -std=c++0x %s 2>&1 +// RUN: clang-cc -fsyntax-only -verify -std=c++0x %s 2>&1 int static_assert; /* expected-error {{expected unqualified-id}} */ diff --git a/test/Lexer/cxx0x_keyword_as_cxx98.cpp b/test/Lexer/cxx0x_keyword_as_cxx98.cpp index 6700dcb182..9f8aea127c 100644 --- a/test/Lexer/cxx0x_keyword_as_cxx98.cpp +++ b/test/Lexer/cxx0x_keyword_as_cxx98.cpp @@ -1,2 +1,2 @@ -// RUN: clang %s -fsyntax-only +// RUN: clang-cc %s -fsyntax-only int static_assert; diff --git a/test/Lexer/digraph.c b/test/Lexer/digraph.c index 9683ee4f99..4d494ca1dd 100644 --- a/test/Lexer/digraph.c +++ b/test/Lexer/digraph.c @@ -1,4 +1,4 @@ -// RUN: clang -fsyntax-only -verify < %s +// RUN: clang-cc -fsyntax-only -verify < %s %:include <stdio.h> diff --git a/test/Lexer/dollar-idents.c b/test/Lexer/dollar-idents.c index ed20f05fb0..7635ea112e 100644 --- a/test/Lexer/dollar-idents.c +++ b/test/Lexer/dollar-idents.c @@ -1,6 +1,6 @@ -// RUN: clang -dump-tokens %s 2> %t && +// RUN: clang-cc -dump-tokens %s 2> %t && // RUN: grep "identifier '\$A'" %t -// RUN: clang -dump-tokens -x assembler-with-cpp %s 2> %t && +// RUN: clang-cc -dump-tokens -x assembler-with-cpp %s 2> %t && // RUN: grep "identifier 'A'" %t // PR3808 diff --git a/test/Lexer/escape_newline.c b/test/Lexer/escape_newline.c index 2e4b7cd7cd..ce120ed7c8 100644 --- a/test/Lexer/escape_newline.c +++ b/test/Lexer/escape_newline.c @@ -1,6 +1,6 @@ -// RUN: clang -E -trigraphs %s | grep -- ' ->' && -// RUN: clang -E -trigraphs %s 2>&1 | grep 'backslash and newline separated by space' && -// RUN: clang -E -trigraphs %s 2>&1 | grep 'trigraph converted' +// RUN: clang-cc -E -trigraphs %s | grep -- ' ->' && +// RUN: clang-cc -E -trigraphs %s 2>&1 | grep 'backslash and newline separated by space' && +// RUN: clang-cc -E -trigraphs %s 2>&1 | grep 'trigraph converted' // This is an ugly way to spell a -> token. -??/ diff --git a/test/Lexer/multiple-include.c b/test/Lexer/multiple-include.c index ccea3ff774..e5fd52926e 100644 --- a/test/Lexer/multiple-include.c +++ b/test/Lexer/multiple-include.c @@ -1,4 +1,4 @@ -// RUN: clang %s -fsyntax-only +// RUN: clang-cc %s -fsyntax-only #ifndef XVID_AUTO_INCLUDE diff --git a/test/Lexer/number.c b/test/Lexer/number.c index bafbc022d5..253453c764 100644 --- a/test/Lexer/number.c +++ b/test/Lexer/number.c @@ -1,4 +1,4 @@ -// RUN: clang %s -fsyntax-only +// RUN: clang-cc %s -fsyntax-only float X = 1.17549435e-38F; float Y = 08.123456; diff --git a/test/Lexer/numeric-literal-trash.c b/test/Lexer/numeric-literal-trash.c index 243825a536..047e0b8e95 100644 --- a/test/Lexer/numeric-literal-trash.c +++ b/test/Lexer/numeric-literal-trash.c @@ -1,4 +1,4 @@ -/* RUN: clang -fsyntax-only -verify %s +/* RUN: clang-cc -fsyntax-only -verify %s */ # define XRECORD(x, c_name) e##c (x, __LINE__) diff --git a/test/Lexer/pragma-mark.c b/test/Lexer/pragma-mark.c index 388fef5575..f4204aa9d8 100644 --- a/test/Lexer/pragma-mark.c +++ b/test/Lexer/pragma-mark.c @@ -1,4 +1,4 @@ -// RUN: clang %s -fsyntax-only -verify +// RUN: clang-cc %s -fsyntax-only -verify // Lexer diagnostics shouldn't be included in #pragma mark. #pragma mark Mike's world diff --git a/test/Lexer/rdr-6096838-2.c b/test/Lexer/rdr-6096838-2.c index 152617e258..b135dc1409 100644 --- a/test/Lexer/rdr-6096838-2.c +++ b/test/Lexer/rdr-6096838-2.c @@ -1,4 +1,4 @@ -/* RUN: clang -pedantic -std=gnu89 -fsyntax-only -verify %s +/* RUN: clang-cc -pedantic -std=gnu89 -fsyntax-only -verify %s rdar://6096838 */ diff --git a/test/Lexer/rdr-6096838.c b/test/Lexer/rdr-6096838.c index 3a7a0d5f1f..60e5244646 100644 --- a/test/Lexer/rdr-6096838.c +++ b/test/Lexer/rdr-6096838.c @@ -1,5 +1,5 @@ -/* RUN: clang -fsyntax-only -verify %s && - * RUN: clang -std=gnu89 -fsyntax-only -verify %s +/* RUN: clang-cc -fsyntax-only -verify %s && + * RUN: clang-cc -std=gnu89 -fsyntax-only -verify %s rdar://6096838 */ diff --git a/test/Lexer/token-concat.c b/test/Lexer/token-concat.c index 003344fc0a..4e27d5d723 100644 --- a/test/Lexer/token-concat.c +++ b/test/Lexer/token-concat.c @@ -1,4 +1,4 @@ -// RUN: clang -E -x c -o %t %s && +// RUN: clang-cc -E -x c -o %t %s && // RUN: grep 'IDENT.2' %t IDENT.2 diff --git a/test/Lexer/unknown-char.c b/test/Lexer/unknown-char.c index 8bdfe60553..acbf4f039a 100644 --- a/test/Lexer/unknown-char.c +++ b/test/Lexer/unknown-char.c @@ -1,2 +1,2 @@ -// RUN: clang -E %s 2>&1 | not grep error +// RUN: clang-cc -E %s 2>&1 | not grep error ` ` ` ` |