Add regression tests for exec.c rev 1.30.
This commit is contained in:
parent
f30842ba79
commit
9bb8020ab3
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=165931
@ -1,2 +0,0 @@
|
||||
# $FreeBSD$
|
||||
command -V nonexisting
|
@ -1 +0,0 @@
|
||||
nonexisting: not found
|
8
tools/regression/bin/sh/builtins/type1.0
Normal file
8
tools/regression/bin/sh/builtins/type1.0
Normal file
@ -0,0 +1,8 @@
|
||||
# $FreeBSD$
|
||||
command -v not-here && exit 1
|
||||
command -v /not-here && exit 1
|
||||
command -V not-here && exit 1
|
||||
command -V /not-here && exit 1
|
||||
type not-here && exit 1
|
||||
type /not-here && exit 1
|
||||
exit 0
|
4
tools/regression/bin/sh/builtins/type1.0.stdout
Normal file
4
tools/regression/bin/sh/builtins/type1.0.stdout
Normal file
@ -0,0 +1,4 @@
|
||||
not-here: not found
|
||||
/not-here: No such file or directory
|
||||
not-here: not found
|
||||
/not-here: No such file or directory
|
Loading…
Reference in New Issue
Block a user