svlogd: fix compat problem: svlogd -tt should timestanp stderr too
[busybox.git] / shell / ash_test / ash-invert / invert.tests
blob8393d95a43fd534716e25cb6a0bba0232029a927
1 # tests of return value inversion
2 # placeholder for future expansion
4 # user subshells (...) did this wrong in bash versions before 2.04
6 ! ( echo hello | grep h >/dev/null 2>&1 ); echo $?
7 ! echo hello | grep h >/dev/null 2>&1 ; echo $?
9 ! true ; echo $?
10 ! false; echo $?
12 ! (false) ; echo $?
13 ! (true); echo $?
15 ! true | false ; echo $?
16 ! false | true ; echo $?
18 ! (true | false) ; echo $?
19 ! (false | true) ; echo $?