aboutsummaryrefslogtreecommitdiff
path: root/shell/hush_test/hush-misc/for_with_bslashes.tests
diff options
context:
space:
mode:
Diffstat (limited to 'shell/hush_test/hush-misc/for_with_bslashes.tests')
-rwxr-xr-xshell/hush_test/hush-misc/for_with_bslashes.tests8
1 files changed, 2 insertions, 6 deletions
diff --git a/shell/hush_test/hush-misc/for_with_bslashes.tests b/shell/hush_test/hush-misc/for_with_bslashes.tests
index 363f3d85b..8acd9808a 100755
--- a/shell/hush_test/hush-misc/for_with_bslashes.tests
+++ b/shell/hush_test/hush-misc/for_with_bslashes.tests
@@ -1,9 +1,5 @@
-# UNFIXED BUG.
-# commented-out words contain ^C character.
-# It's a SPECIAL_VAR_SYMBOL, for now hush does not escape it.
-# When it is fixed, update this test.
-
-for a in 'a' 'b\c' 'b\\c' 'b"c' "b'c" 'b$c' 'b`true`c' ### 'b#c'
+# last word contains ^C character.
+for a in 'a' 'b\c' 'b\\c' 'b"c' "b'c" 'b$c' 'b`true`c' 'b#c'
do
echo $a
done