diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-03-24 03:07:05 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-03-24 03:07:05 +0000 |
commit | 7ec3dafdda96abcd1ff0841deef4eadfeb8f1208 (patch) | |
tree | c4536036b31ff0adeab39bcdae5f455c97e55936 /test/Driver/parsing.c | |
parent | 073777f3ab6f829d6f16105e0d9513b7691b4a4d (diff) |
Rename clang-driver to clang.
Again, I tried to update cmake but it is untested.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67606 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Driver/parsing.c')
-rw-r--r-- | test/Driver/parsing.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Driver/parsing.c b/test/Driver/parsing.c index 59004d6157..ed70949a01 100644 --- a/test/Driver/parsing.c +++ b/test/Driver/parsing.c @@ -1,4 +1,4 @@ -// RUN: clang-driver -ccc-print-options input -Yunknown -m32 -arch ppc -djoined -A separate -Ajoined -Wp,one,two -Xarch_joined AndSeparate -sectalign 1 2 3 2> %t && +// RUN: clang -ccc-print-options input -Yunknown -m32 -arch ppc -djoined -A separate -Ajoined -Wp,one,two -Xarch_joined AndSeparate -sectalign 1 2 3 2> %t && // RUN: grep 'Option 0 - Name: "<input>", Values: {"input"}' %t && // RUN: grep 'Option 1 - Name: "<unknown>", Values: {"-Yunknown"}' %t && // RUN: grep 'Option 2 - Name: "-m32", Values: {}' %t && @@ -10,9 +10,9 @@ // RUN: grep 'Option 8 - Name: "-Xarch_", Values: {"joined", "AndSeparate"}' %t && // RUN: grep 'Option 9 - Name: "-sectalign", Values: {"1", "2", "3"}' %t && -// RUN: not clang-driver -V 2> %t && +// RUN: not clang -V 2> %t && // RUN: grep "error: argument to '-V' is missing (expected 1 value)" %t && -// RUN: not clang-driver -sectalign 1 2 2> %t && +// RUN: not clang -sectalign 1 2 2> %t && // RUN: grep "error: argument to '-sectalign' is missing (expected 3 values)" %t && // RUN: true |