XFAIL tests from LLVMC on valgrind or valgrind+leak-checking. We
[oota-llvm.git] / test / LLVMC / NoActions.td
1 // Check that tools without associated actions are accepted.
2 // RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t
3 // RUN: FileCheck -input-file %t %s
4 // RUN: %compile_cxx -fexceptions -x c++ %t
5 // XFAIL: vg_leak
6
7 include "llvm/CompilerDriver/Common.td"
8
9 // CHECK: class dummy_tool : public Tool {
10 def dummy_tool : Tool<[
11 (command "dummy_cmd"),
12 (in_language "dummy"),
13 (out_language "dummy")
14 ]>;
15
16 def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>;