ladybird/Userland/Shell/Tests/subshell.sh

40 lines
882 B
Bash
Raw Normal View History

#!/bin/sh
2020-09-08 12:18:13 -03:00
source $(dirname "$0")/test-commons.inc
2020-09-08 12:18:13 -03:00
setopt --verbose
rm -rf /tmp/shell-test 2> /dev/null
mkdir -p /tmp/shell-test
pushd /tmp/shell-test
2020-09-08 12:18:13 -03:00
# Simple sequence (grouping)
{ echo test > testfile }
if not test "$(cat testfile)" = "test" {
fail cannot write to file in subshell
}
2020-09-08 12:18:13 -03:00
# Simple sequence - many commands
{ echo test1 > testfile; echo test2 > testfile }
if not test "$(cat testfile)" = "test2" {
fail cannot write to file in subshell 2
}
2020-09-08 12:18:13 -03:00
# Does it exit with the last exit code?
{ test -z "a" }
exitcode=$?
if not test "$exitcode" -eq 1 {
fail exits with $exitcode when it should exit with 1
}
2020-09-08 12:18:13 -03:00
{ test -z "a" || echo test }
exitcode=$?
if not test "$exitcode" -eq 0 {
fail exits with $exitcode when it should exit with 0
}
2020-09-08 12:18:13 -03:00
popd
rm -rf /tmp/shell-test
echo PASS