diff options
author | John Criswell <criswell@uiuc.edu> | 2003-09-30 19:28:26 +0000 |
---|---|---|
committer | John Criswell <criswell@uiuc.edu> | 2003-09-30 19:28:26 +0000 |
commit | 2bcb2deba26dfe753dfa9465940530cb36675d74 (patch) | |
tree | 3eea6cd3f032813f6129371289474aa5288248f4 /test/C++Frontend | |
parent | 28e7767640be985520d3213f1c284ede9d5012c7 (diff) | |
download | external_llvm-2bcb2deba26dfe753dfa9465940530cb36675d74.zip external_llvm-2bcb2deba26dfe753dfa9465940530cb36675d74.tar.gz external_llvm-2bcb2deba26dfe753dfa9465940530cb36675d74.tar.bz2 |
Adjusted for the new TestRunner test class. This replaces %gcc and %g++ with
the names of the LLVM C and C++ frontends, respectively.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8789 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/C++Frontend')
-rw-r--r-- | test/C++Frontend/2003-08-24-Cleanup.cpp.tr | 2 | ||||
-rw-r--r-- | test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/C++Frontend/2003-08-24-Cleanup.cpp.tr b/test/C++Frontend/2003-08-24-Cleanup.cpp.tr index b27aef4..3f54f5e 100644 --- a/test/C++Frontend/2003-08-24-Cleanup.cpp.tr +++ b/test/C++Frontend/2003-08-24-Cleanup.cpp.tr @@ -1,4 +1,4 @@ -// RUN: llvmg++ -xc++ %s -c -o - | llvm-dis | grep unwind +// RUN: %gxx -xc++ %s -c -o - | llvm-dis | grep unwind struct S { ~S(); }; diff --git a/test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr b/test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr index 2e82b46..beba66e 100644 --- a/test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr +++ b/test/C++Frontend/2003-08-29-ArgPassingBug.cpp.tr @@ -1,5 +1,5 @@ -// RUN: llvmgcc -xc++ -c -o /dev/null %s 2>&1 | not grep WARNING +// RUN: %gcc -xc++ -c -o /dev/null %s 2>&1 | not grep WARNING struct iterator { iterator(); |