Files
ladybird/Shell/Tests/backgrounding.sh
AnotherTest 2caf4e66ea Shell: Stop running the backgrounding test
This test is breaking the build all the time, let's just turn it off for
now. we can enable it again once we know it won't fail.
2021-01-02 21:02:15 +01:00

57 lines
721 B
Bash

#!/bin/Shell
echo "Not running Shell-backgrounding as it has a high failure rate"
exit 0
setopt --verbose
fail(msg) {
echo FAIL: $msg
exit 1
}
last_idx=''
block_idx=0
block() {
block_idx=$(expr 1 + $block_idx)
last_idx=$block_idx
mkfifo fifo$block_idx
cat fifo$block_idx&
}
unblock(idx) {
echo unblock $idx > fifo$idx
rm -f fifo$idx
}
assert_job_count(count) {
ecount=$(jobs | wc -l)
shift
if test $ecount -ne $count {
for $* {
unblock $it
}
fail "expected $ecount == $count"
}
}
block
i=$last_idx
assert_job_count 1 $i
unblock $i
wait
block
i=$last_idx
block
j=$last_idx
assert_job_count 2 $i $j
unblock $i
unblock $j
wait