cnuke says Haiku is like GNU in that it has no /usr whatsoever

This commit is contained in:
tg 2011-04-09 15:39:50 +00:00
parent cd9f846852
commit 8c46637835

14
check.t
View File

@ -1,4 +1,4 @@
# $MirOS: src/bin/mksh/check.t,v 1.443 2011/04/02 10:30:09 tg Exp $ # $MirOS: src/bin/mksh/check.t,v 1.444 2011/04/09 15:39:50 tg Exp $
# $OpenBSD: bksl-nl.t,v 1.2 2001/01/28 23:04:56 niklas Exp $ # $OpenBSD: bksl-nl.t,v 1.2 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: history.t,v 1.5 2001/01/28 23:04:56 niklas Exp $ # $OpenBSD: history.t,v 1.5 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $ # $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $
@ -5126,12 +5126,12 @@ description:
Check some "exit on error" conditions Check some "exit on error" conditions
stdin: stdin:
set -ex set -ex
/usr/bin/env false && echo something env false && echo something
echo END echo END
expected-stdout: expected-stdout:
END END
expected-stderr: expected-stderr:
+ /usr/bin/env false + env false
+ echo END + echo END
--- ---
name: exit-err-2 name: exit-err-2
@ -5139,15 +5139,15 @@ description:
Check some "exit on error" edge conditions (POSIXly) Check some "exit on error" edge conditions (POSIXly)
stdin: stdin:
set -ex set -ex
if /usr/bin/env true; then if env true; then
/usr/bin/env false && echo something env false && echo something
fi fi
echo END echo END
expected-stdout: expected-stdout:
END END
expected-stderr: expected-stderr:
+ /usr/bin/env true + env true
+ /usr/bin/env false + env false
+ echo END + echo END
--- ---
name: exit-err-3 name: exit-err-3