mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:37:44 +00:00
Shell: Add a test for control structures as commands
This commit is contained in:
parent
54b453be57
commit
0fd8d5ad3d
1 changed files with 39 additions and 0 deletions
39
Shell/Tests/control-structure-as-command.sh
Normal file
39
Shell/Tests/control-structure-as-command.sh
Normal file
|
@ -0,0 +1,39 @@
|
|||
#!/bin/sh
|
||||
|
||||
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 }
|
||||
test "$(cat listing)" = "yes" || echo for cannot appear as second part of '&&' && exit 1
|
||||
rm listing
|
||||
|
||||
# FIXME: This should work!
|
||||
# for $(seq 1) { echo yes > listing } && echo HELLO!
|
||||
# test "$(cat listing)" = "yes" || echo for cannot appear as first part of '&&' && exit 1
|
||||
# rm listing
|
||||
|
||||
# Can we pipe things into and from control structures?
|
||||
ls | if true { cat > listing }
|
||||
test "$(cat listing)" = "a b c" || echo if cannot be correctly redirected to && exit 1
|
||||
rm listing
|
||||
|
||||
ls | for $(seq 1) { cat > listing }
|
||||
test "$(cat listing)" = "a b c" || echo for cannot be correctly redirected to && exit 1
|
||||
rm listing
|
||||
|
||||
for $(seq 4) { echo $it } | cat > listing
|
||||
test "$(cat listing)" = "1 2 3 4" || echo for cannot be correctly redirected from && exit 1
|
||||
rm listing
|
||||
|
||||
if true { echo TRUE! } | cat > listing
|
||||
test "$(cat listing)" = "TRUE!" || echo if cannot be correctly redirected from && exit 1
|
||||
rm listing
|
||||
|
||||
cd ..
|
||||
rm -rf shell-test
|
Loading…
Add table
Add a link
Reference in a new issue