mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +00:00

There's no guarantee that the last executed command will have a zero exit code, and so the shell exit code may or may not be zero, even if all the tests pass. Also changes the `test || echo fail && exit` to `if not test { echo fail && exit }`, since that's nicer-looking.
44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
#!/bin/sh
|
|
|
|
source test-commons.inc
|
|
|
|
setopt --verbose
|
|
|
|
rm -rf shell-test 2> /dev/null
|
|
mkdir shell-test
|
|
cd shell-test
|
|
|
|
touch a b c
|
|
|
|
# Can we do logical stuff with control structures?
|
|
ls && for $(seq 1) { echo yes > listing }
|
|
if not test "$(cat listing)" = "yes" { fail for cannot appear as second part of '&&' }
|
|
rm listing
|
|
|
|
# FIXME: These should work!
|
|
|
|
# for $(seq 1) { echo yes > listing } && echo HELLO!
|
|
# if not test "$(cat listing)" = "yes" { echo for cannot appear as first part of '&&' }
|
|
# rm listing
|
|
|
|
# Can we pipe things into and from control structures?
|
|
# ls | if true { cat > listing }
|
|
# if not test "$(cat listing)" = "a b c" { fail if cannot be correctly redirected to }
|
|
# rm listing
|
|
|
|
# ls | for $(seq 1) { cat > listing }
|
|
# if not test "$(cat listing)" = "a b c" { fail for cannot be correctly redirected to }
|
|
# rm listing
|
|
|
|
for $(seq 4) { echo $it } | cat > listing
|
|
if not test "$(cat listing)" = "1 2 3 4" { fail for cannot be correctly redirected from }
|
|
rm listing
|
|
|
|
if true { echo TRUE! } | cat > listing
|
|
if not test "$(cat listing)" = "TRUE!" { fail if cannot be correctly redirected from }
|
|
rm listing
|
|
|
|
cd ..
|
|
rm -rf shell-test
|
|
|
|
echo PASS
|