mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
1eb5aea504
The test runner does not rewrite instances of /dev/null inside the quoted sh command. /dev/null does not exist, so opt will fail to open it, and return a non-zero exit code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173509 91177308-0d34-0410-b5e6-96231b3b80d8
17 lines
422 B
LLVM
17 lines
422 B
LLVM
; 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
|
|
|
|
; opt will fail to open /dev/null on native win32.
|
|
; XFAIL: win32
|
|
|
|
; Test that the error handling when writing to stderr fails exits the
|
|
; program cleanly rather than aborting.
|