hush: fix segfault in ${?:N:M}
[oweals/busybox.git] / shell / hush_test / hush-vars / star.tests
index 1914dde440539f173398cd1648614eadd1dc1045..5554c4090a6744cf19ac1e40a97e84823164dd22 100755 (executable)
@@ -4,5 +4,5 @@ fi
 # 'd e f' should be split into 3 separate args:
 for a in $*; do echo ".$a."; done
 
-# must produce .1 abc d e f. Currently does not
-#for a in "$*"; do echo ".$a."; done
+# must produce .1 abc d e f.
+for a in "$*"; do echo ".$a."; done