aboutsummaryrefslogtreecommitdiff
path: root/test/Other/close-stderr.ll
blob: e0641bfd6545c047060ecc0e8dfcdd7e7bad3b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; RUN: sh -c 'opt --reject-this-option 2>&-; echo $?; opt -o /dev/null /dev/null 2>&-; echo $?;' \
; RUN:   | FileCheck %s
; CHECK: {{^70$}}
; CHECK: {{^0$}}
; XFAIL: vg_leak
; REQUIRES: shell

; On MSYS, 70 is not seen, but 1. r127726 should be reworked.
; XFAIL: mingw32

; Test that the error handling when writing to stderr fails exits the
; program cleanly rather than aborting.