Results for builtin-meta.test.sh

statusdashbashmkshzshosh
pass 921181524
ok 21321
N-I 90270
BUG 53210
total2525252525
casedashbashmkshzshoshdescription
0ok pass pass pass pass command -v
details
1BUG BUG ok pass pass command -v with multiple names
detailsdetailsdetails
2BUG pass pass pass pass command -v doesn't find non-executable file
details
3ok ok ok ok pass command -V
detailsdetailsdetailsdetails
4BUG pass ok ok pass command -V nonexistent
detailsdetailsdetails
5pass pass pass pass pass command skips function lookup
6pass pass pass N-I pass command command seq 3
details
7pass pass pass N-I pass command command -v seq
details
8pass pass pass pass pass command -p (override existing program)
9pass pass pass pass pass command -p (hide tool in custom path)
10pass pass pass pass pass command -p (find hidden tool in default path)
11pass pass N-I N-I pass $(command type ls)
detailsdetails
12N-I pass pass pass pass builtin
details
13N-I pass pass pass pass builtin ls not found
details
14N-I pass pass pass pass builtin no args
details
15N-I pass pass pass pass builtin command echo hi
details
16N-I pass pass pass pass builtin typeset / export / readonly
details
17N-I pass N-I pass pass builtin declare / local
detailsdetails
18pass pass pass pass ok builtin declare a=(x y) etc.
details
19pass pass pass N-I pass command export / readonly
details
20BUG pass BUG BUG pass command local
detailsdetailsdetails
21N-I pass pass N-I pass static builtin command ASSIGN, command builtin ASSIGN
detailsdetails
22N-I pass pass N-I pass dynamic builtin command ASSIGN, command builtin ASSIGN
detailsdetails
23BUG BUG pass N-I pass Assignment builtins and word splitting, even after builtin/command
detailsdetailsdetails
24N-I BUG BUG pass pass More word splitting
detailsdetailsdetails
87 passed, 9 OK, 18 not implemented, 11 BUG, 0 failed, 0 timeouts, 0 cases skipped

Details on runs that didn't PASS

dash0 command -v

stdout:
echo
0
myfunc
0
nonexistent=127
empty=127
for
0
stderr:
dash1 command -v with multiple names

stdout:
echo
status=0
stderr:
bash1 command -v with multiple names

stdout:
echo
myfunc
for
status=0
stderr:
mksh1 command -v with multiple names

stdout:
echo
myfunc
status=1
stderr:
dash2 command -v doesn't find non-executable file

stdout:
_tmp/non-executable
status=0
_tmp/executable
status=0
stderr:
dash3 command -V

stdout:
ll is an alias for ls -l
status=0
echo is a shell builtin
status=0
myfunc is a shell function
status=0
nonexistent: not found
status=127
for is a shell keyword
status=0
stderr:
dash: 3: shopt: not found
bash3 command -V

stdout:
ll is aliased to 'ls -l'
status=0
echo is a shell builtin
status=0
myfunc is a function
myfunc () 
{ 
    echo x
}
status=0
status=1
for is a shell keyword
status=0
stderr:
bash: line 16: command: nonexistent: not found
mksh3 command -V

stdout:
ll is an alias for 'ls -l'
status=0
echo is a shell builtin
status=0
myfunc is a function
status=0
nonexistent not found
status=1
for is a reserved word
status=0
stderr:
mksh: <stdin>[3]: shopt: not found
zsh3 command -V

stdout:
ll is an alias for ls -l
status=0
echo is a shell builtin
status=0
myfunc is a shell function
status=0
nonexistent not found
status=1
for is a reserved word
status=0
stderr:
zsh: command not found: shopt
dash4 command -V nonexistent

stdout:
nonexistent: not found
status=127
stderr:
mksh4 command -V nonexistent

stdout:
nonexistent not found
status=1
stderr:
zsh4 command -V nonexistent

stdout:
nonexistent not found
status=1
stderr:
zsh6 command command seq 3

stdout:
stderr: 
zsh: command not found: command
zsh7 command command -v seq

stdout:
stderr: 
zsh: command not found: command
mksh11 $(command type ls)

stdout:
status=1
stderr:
mksh: <stdin>[3]: type: not found
zsh11 $(command type ls)

stdout:
FUNCTION
status=1
stderr:
zsh: command not found: type
dash12 builtin

stdout:
hi
stderr:
dash: 3: builtin: not found
dash13 builtin ls not found

stdout:
stderr: 
dash: 1: builtin: not found
dash14 builtin no args

stdout:
stderr: 
dash: 1: builtin: not found
dash15 builtin command echo hi

stdout:
stderr: 
dash: 1: builtin: not found
dash16 builtin typeset / export / readonly

stdout:
stderr: 
dash17 builtin declare / local

stdout:
stderr: 
mksh17 builtin declare / local

stdout:
stderr: 
osh18 builtin declare a=(x y) etc.

stdout:
stderr: 
zsh19 command export / readonly

stdout:
stderr: 
dash20 command local

stdout:
s=
stderr:
mksh20 command local

stdout:
s=
stderr:
mksh: <stdin>[6]: local: not found
zsh20 command local

stdout:
s=
stderr:
f:1: command not found: local
dash21 static builtin command ASSIGN, command builtin ASSIGN

stdout:
stderr: 
zsh21 static builtin command ASSIGN, command builtin ASSIGN

stdout:
stderr: 
dash22 dynamic builtin command ASSIGN, command builtin ASSIGN

stdout:
stderr: 
zsh22 dynamic builtin command ASSIGN, command builtin ASSIGN

stdout:
stderr: 
dash23 Assignment builtins and word splitting, even after builtin/command

stdout:
a b
a
stderr:
bash23 Assignment builtins and word splitting, even after builtin/command

stdout:
a b
a
stderr:
zsh23 Assignment builtins and word splitting, even after builtin/command

stdout:
a b

stderr:
zsh: command not found: readonly
dash24 More word splitting

stdout:
a

stderr:
dash: 6: builtin: not found
bash24 More word splitting

stdout:
a b
a
stderr:
mksh24 More word splitting

stdout:
a b
a
stderr: