summaryrefslogtreecommitdiff
path: root/test/LLVMC/AppendCmdHook.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/AppendCmdHook.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/AppendCmdHook.td')
-rw-r--r--test/LLVMC/AppendCmdHook.td8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/LLVMC/AppendCmdHook.td b/test/LLVMC/AppendCmdHook.td
index 4a9d39121a..539a93f834 100644
--- a/test/LLVMC/AppendCmdHook.td
+++ b/test/LLVMC/AppendCmdHook.td
@@ -13,14 +13,14 @@ def OptList : OptionList<[
]>;
def dummy_tool : Tool<[
-(cmd_line "dummy_cmd $INFILE"),
+(command "dummy_cmd"),
(in_language "dummy_lang"),
(out_language "dummy_lang"),
(actions (case
- // CHECK: push_back("-arg1")
- // CHECK: push_back("-arg2")
+ // CHECK: , "-arg1"));
+ // CHECK: , "-arg2"));
(switch_on "dummy1"), (append_cmd "-arg1 -arg2"),
- // CHECK: push_back("-arg3")
+ // CHECK: , "-arg3"));
// CHECK: hooks::MyHook()
(switch_on "dummy2"), (append_cmd "-arg3 $CALL(MyHook)")))
]>;