Mark llvm/test/BugPoint/compile-custom.ll as XFAIL:vg_leak.
[oota-llvm.git] / test / BugPoint / compile-custom.ll
1 ; RUN: bugpoint -load %llvmshlibdir/BugpointPasses%shlibext --compile-custom --compile-command="%s.py arg1 arg2" --output-prefix %t %s | FileCheck %s
2 ; REQUIRES: loadable_module
3
4 ; XFAIL: vg_leak
5
6 ; Test that arguments are correctly passed in --compile-command.  The output
7 ; of bugpoint includes the output of the custom tool, so we just echo the args
8 ; in the tool and check here.
9
10 ; CHECK: Error: arg1 arg2
11
12 define void @noop() {
13     ret void
14 }