about summary refs log tree commit diff
path: root/Test/A01grammar.ztst
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2003-04-01 14:03:56 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2003-04-01 14:03:56 +0000
commita78bff4398871023d3913dc259d6a575701f8470 (patch)
treefbc342199684ab3b00ee881e716a6771df9c10be /Test/A01grammar.ztst
parent259de0b7424adf73d77a6688962f8d82ba39c796 (diff)
downloadzsh-a78bff4398871023d3913dc259d6a575701f8470.tar.gz
zsh-a78bff4398871023d3913dc259d6a575701f8470.tar.xz
zsh-a78bff4398871023d3913dc259d6a575701f8470.zip
18418: fix select test and add parameter tests
Diffstat (limited to 'Test/A01grammar.ztst')
-rw-r--r--Test/A01grammar.ztst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Test/A01grammar.ztst b/Test/A01grammar.ztst
index 918f77c0a..6f40c98ab 100644
--- a/Test/A01grammar.ztst
+++ b/Test/A01grammar.ztst
@@ -233,10 +233,11 @@
 
 ## Select now reads from stdin if the shell is not interactive.
 ## Its own output goes to stderr.
+  (COLUMNS=80
   PS3="input> "
   select name in one two three; do
     print $name
-  done
+  done)
 0:`select' loop
 <2
 ?1) one     2) two     3) three