Add new -d option to tblgen. It writes a make(1)-style dependency file.
[oota-llvm.git] / test / LLVMC / HookWithInFile.td
index 7fb3df1c9a66b2af2ce610dd59be62676a9d0b64..ed08b5321ccfb354deee13a9eaa7e0470d6ea5fb 100644 (file)
@@ -1,14 +1,16 @@
 // Check that a hook can be given $INFILE as an argument.
 // RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
-// RUN: grep Hook\\(inFile.c_str\\(\\)\\) %t | count 1
-// RUN: %compile_cxx -fexceptions -x c++ %t
+// RUN: FileCheck -input-file %t %s
+// RUN: %compile_cxx %t
+// XFAIL: vg_leak
 
 include "llvm/CompilerDriver/Common.td"
 
 def dummy_tool : Tool<[
-(cmd_line "$CALL(Hook, '$INFILE')/path $INFILE"),
+// CHECK: Hook(inFile.c_str())
+(command "$CALL(Hook, '$INFILE')/path"),
 (in_language "dummy"),
 (out_language "dummy")
 ]>;
 
-def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;
+def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;