summaryrefslogtreecommitdiff
path: root/test/LLVMC/EnvParentheses.td
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-02-23 09:04:51 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-02-23 09:04:51 +0000
commit7cebe55bade5c784fb9e2c574cc797fcd6cf1082 (patch)
treee47a85c1bda0575607bd94d50950c46c7baf5bf1 /test/LLVMC/EnvParentheses.td
parenta34f97ab22d55b38423d25663cc26408ac34a721 (diff)
downloadllvm-7cebe55bade5c784fb9e2c574cc797fcd6cf1082.tar.gz
llvm-7cebe55bade5c784fb9e2c574cc797fcd6cf1082.tar.bz2
llvm-7cebe55bade5c784fb9e2c574cc797fcd6cf1082.tar.xz
Update the test suite.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96921 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LLVMC/EnvParentheses.td')
-rw-r--r--test/LLVMC/EnvParentheses.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/LLVMC/EnvParentheses.td b/test/LLVMC/EnvParentheses.td
index 77aab95c5f..c563171335 100644
--- a/test/LLVMC/EnvParentheses.td
+++ b/test/LLVMC/EnvParentheses.td
@@ -1,13 +1,13 @@
// Check the fix for PR4157.
// http://llvm.org/bugs/show_bug.cgi?id=4157
// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
-// RUN: not grep {)));} %t
+// RUN: not grep {FOO")));} %t
// RUN: %compile_cxx -fexceptions -x c++ %t
include "llvm/CompilerDriver/Common.td"
def dummy_tool : Tool<[
-(cmd_line "gcc -o $OUTFILE $INFILE $ENV(FOO)/bar"),
+(command "gcc $ENV(FOO)/bar"),
(in_language "dummy"),
(out_language "dummy")
]>;