Results for builtin-meta.test.sh

statusdashbashmkshzshosh
pass 714121116
ok 21320
N-I 40130
BUG 31000
total1616161616
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
60 passed, 8 OK, 8 not implemented, 4 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