mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-06-10 06:48:03 +02:00
35056: turn off PROMPT_SP for interactive test
This commit is contained in:
parent
5acc89d518
commit
39aeeedb19
2 changed files with 12 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2015-05-08 Peter Stephenson <p.stephenson@samsung.com>
|
||||||
|
|
||||||
|
* 35056: Test/A02alias.ztst: turn off PROMPT_SP for interactive
|
||||||
|
test.
|
||||||
|
|
||||||
2015-05-08 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
2015-05-08 Jun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>
|
||||||
|
|
||||||
* 35057: Etc/FAQ.yo: make URL clickable (should have been
|
* 35057: Etc/FAQ.yo: make URL clickable (should have been
|
||||||
|
|
|
@ -59,7 +59,8 @@
|
||||||
>And aliases are expanded
|
>And aliases are expanded
|
||||||
|
|
||||||
$ZTST_testdir/../Src/zsh -fis <<<'
|
$ZTST_testdir/../Src/zsh -fis <<<'
|
||||||
PROMPT=""
|
unsetopt PROMPT_SP
|
||||||
|
PROMPT="" PS2="" PS3="" PS4="" RPS1="" RPS2=""
|
||||||
exec 2>&1
|
exec 2>&1
|
||||||
alias \{=echo
|
alias \{=echo
|
||||||
{ begin
|
{ begin
|
||||||
|
@ -68,16 +69,17 @@
|
||||||
0:Aliasing reserved tokens
|
0:Aliasing reserved tokens
|
||||||
>begin
|
>begin
|
||||||
>end
|
>end
|
||||||
*>*4*{ begin
|
*>*5*{ begin
|
||||||
*>*5*{end
|
*>*6*{end
|
||||||
|
|
||||||
$ZTST_testdir/../Src/zsh -fis <<<'
|
$ZTST_testdir/../Src/zsh -fis <<<'
|
||||||
PROMPT=""
|
unsetopt PROMPT_SP
|
||||||
|
PROMPT="" PS2="" PS3="" PS4="" RPS1="" RPS2=""
|
||||||
exec 2>&1
|
exec 2>&1
|
||||||
alias -g S=\"
|
alias -g S=\"
|
||||||
echo S a string S "
|
echo S a string S "
|
||||||
fc -l -1' 2>/dev/null
|
fc -l -1' 2>/dev/null
|
||||||
0:Global aliasing quotes
|
0:Global aliasing quotes
|
||||||
> a string S
|
> a string S
|
||||||
*>*4*echo S a string S "
|
*>*5*echo S a string S "
|
||||||
# Note there is a trailing space on the "> a string S " line
|
# Note there is a trailing space on the "> a string S " line
|
||||||
|
|
Loading…
Reference in a new issue