[git commit] ash testsuite: remove two inadvertent bashisms

Denys Vlasenko vda.linux at googlemail.com
Sat Oct 1 15:30:21 UTC 2016


commit: https://git.busybox.net/busybox/commit/?id=cc0056db5c82b7965c019599f59f8f1d9e8d52fd
branch: https://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 shell/ash_test/ash-read/read_r.tests     | 6 ++++--
 shell/ash_test/ash-signals/signal1.tests | 2 +-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/shell/ash_test/ash-read/read_r.tests b/shell/ash_test/ash-read/read_r.tests
index 2c4cc61..1f0a18a 100755
--- a/shell/ash_test/ash-read/read_r.tests
+++ b/shell/ash_test/ash-read/read_r.tests
@@ -1,2 +1,4 @@
-echo -e 'test\\\nbest' | (read reply; echo "$reply")
-echo -e 'test\\\nbest' | (read -r reply; echo "$reply")
+echo 'test\
+best' | (read reply; echo "$reply")
+echo 'test\
+best' | (read -r reply; echo "$reply")
diff --git a/shell/ash_test/ash-signals/signal1.tests b/shell/ash_test/ash-signals/signal1.tests
index 28bfc6a..6194346 100755
--- a/shell/ash_test/ash-signals/signal1.tests
+++ b/shell/ash_test/ash-signals/signal1.tests
@@ -19,7 +19,7 @@ while $sleeping; do
     if wait %%; then
         echo "sleep completed"
         sleeping=false
-    elif [ $? == 127 ]; then
+    elif [ $? = 127 ]; then
         echo "BUG: no processes to wait for?!"
         sleeping=false
     else


More information about the busybox-cvs mailing list