X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FLLVMC%2FOneOrMore.td;h=54fa62d1ff041c88bf117dd28ad67ba27dca2edb;hb=d0b69cf1198dadbb7bdfc385334b67f60f756539;hp=f27ae9707d705bce1b26ab4ac3f20eab2a9bfba6;hpb=19d3e82905db7c5882f22ad945724e90e9f4914b;p=oota-llvm.git diff --git a/test/LLVMC/OneOrMore.td b/test/LLVMC/OneOrMore.td index f27ae9707d7..54fa62d1ff0 100644 --- a/test/LLVMC/OneOrMore.td +++ b/test/LLVMC/OneOrMore.td @@ -1,17 +1,20 @@ // Check that (one_or_more) and (zero_or_one) properties work. // The dummy tool and graph are required to silence warnings. -// RUN: tblgen -I $srcroot/include --gen-llvmc %s -o %t -// RUN: grep cl::ZeroOrOne %t | count 1 -// RUN: grep cl::OneOrMore %t | count 1 +// RUN: tblgen -I %p/../../include --gen-llvmc %s -o %t +// RUN: FileCheck -input-file %t %s +// RUN: %compile_cxx %t +// XFAIL: vg_leak include "llvm/CompilerDriver/Common.td" def OptList : OptionList<[ + // CHECK: cl::OneOrMore (prefix_list_option "foo", (one_or_more)), - (parameter_list_option "baz", (zero_or_one))]>; + // CHECK: cl::Optional + (parameter_list_option "baz", (optional))]>; def dummy_tool : Tool<[ -(cmd_line "dummy_cmd"), +(command "dummy_cmd"), (in_language "dummy"), (out_language "dummy"), (actions (case @@ -19,4 +22,4 @@ def dummy_tool : Tool<[ (not_empty "baz"), (forward "baz"))) ]>; -def DummyGraph : CompilationGraph<[SimpleEdge<"root", "dummy_tool">]>; +def DummyGraph : CompilationGraph<[(edge "root", "dummy_tool")]>;