ash testsuite: remove two inadvertent bashisms
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
4d12e944ea
commit
cc0056db5c
@ -1,2 +1,4 @@
|
|||||||
echo -e 'test\\\nbest' | (read reply; echo "$reply")
|
echo 'test\
|
||||||
echo -e 'test\\\nbest' | (read -r reply; echo "$reply")
|
best' | (read reply; echo "$reply")
|
||||||
|
echo 'test\
|
||||||
|
best' | (read -r reply; echo "$reply")
|
||||||
|
@ -19,7 +19,7 @@ while $sleeping; do
|
|||||||
if wait %%; then
|
if wait %%; then
|
||||||
echo "sleep completed"
|
echo "sleep completed"
|
||||||
sleeping=false
|
sleeping=false
|
||||||
elif [ $? == 127 ]; then
|
elif [ $? = 127 ]; then
|
||||||
echo "BUG: no processes to wait for?!"
|
echo "BUG: no processes to wait for?!"
|
||||||
sleeping=false
|
sleeping=false
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user