mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-10-23 16:40:24 +02:00
26545: new "emulate" test
This commit is contained in:
parent
7b31a15de8
commit
51a646917a
2 changed files with 79 additions and 1 deletions
74
Test/B07emulate.ztst
Normal file
74
Test/B07emulate.ztst
Normal file
|
@ -0,0 +1,74 @@
|
|||
# Test the "emulate" builtin and related functions.
|
||||
|
||||
%prep
|
||||
|
||||
isset() {
|
||||
if [[ -o $1 ]]; then print yes; else print no; fi
|
||||
}
|
||||
showopts() {
|
||||
# Set for Bourne shell emulation
|
||||
isset shwordsplit
|
||||
# Set in native mode and unless "emulate -R" is in use
|
||||
isset banghist
|
||||
}
|
||||
|
||||
%test
|
||||
|
||||
(showopts
|
||||
fn() {
|
||||
emulate sh
|
||||
}
|
||||
fn
|
||||
showopts)
|
||||
0:Basic use of emulate
|
||||
>no
|
||||
>yes
|
||||
>yes
|
||||
>yes
|
||||
|
||||
fn() {
|
||||
emulate -L sh
|
||||
showopts
|
||||
}
|
||||
showopts
|
||||
fn
|
||||
showopts
|
||||
0:Use of emulate -L
|
||||
>no
|
||||
>yes
|
||||
>yes
|
||||
>yes
|
||||
>no
|
||||
>yes
|
||||
|
||||
(showopts
|
||||
emulate -R sh
|
||||
showopts)
|
||||
0:Use of emulate -R
|
||||
>no
|
||||
>yes
|
||||
>yes
|
||||
>no
|
||||
|
||||
showopts
|
||||
emulate sh -c 'showopts'
|
||||
showopts
|
||||
0:Use of emulate -c
|
||||
>no
|
||||
>yes
|
||||
>yes
|
||||
>yes
|
||||
>no
|
||||
>yes
|
||||
|
||||
|
||||
showopts
|
||||
emulate -R sh -c 'showopts'
|
||||
showopts
|
||||
0:Use of emulate -R -c
|
||||
>no
|
||||
>yes
|
||||
>yes
|
||||
>no
|
||||
>no
|
||||
>yes
|
Loading…
Add table
Add a link
Reference in a new issue