diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-20 03:35:39 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2013-01-20 03:35:39 +0000 |
commit | fe311dba3ecb5a6b9451bbd56181a3f3b5fb2319 (patch) | |
tree | de6db34f57e259fa37f79341d62a700cf5e263b0 /test/Other | |
parent | 8a72eff7c39a7aacb7a78a019d2b649e2cc859b0 (diff) |
llvm/test/Other/close-stderr.ll: Mark this as XFAIL:valgrind. We got 127 instead of 1 here.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172956 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Other')
-rw-r--r-- | test/Other/close-stderr.ll | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/Other/close-stderr.ll b/test/Other/close-stderr.ll index 1d207c75c6..b310bc2c04 100644 --- a/test/Other/close-stderr.ll +++ b/test/Other/close-stderr.ll @@ -1,6 +1,10 @@ ; RUN: sh -c 'opt --reject-this-option 2>&-; echo $?; opt -o /dev/null /dev/null 2>&-; echo $?;' \ ; RUN: | FileCheck %s + ; CHECK: {{^1$}} +; On valgrind, we got 127 here. +; XFAIL: valgrind + ; CHECK: {{^0$}} ; XFAIL: vg_leak ; REQUIRES: shell |