summaryrefslogtreecommitdiffstats
path: root/tools/regression/bin/sh/builtins/command7.0
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/bin/sh/builtins/command7.0')
-rw-r--r--tools/regression/bin/sh/builtins/command7.034
1 files changed, 0 insertions, 34 deletions
diff --git a/tools/regression/bin/sh/builtins/command7.0 b/tools/regression/bin/sh/builtins/command7.0
deleted file mode 100644
index fc652f2..0000000
--- a/tools/regression/bin/sh/builtins/command7.0
+++ /dev/null
@@ -1,34 +0,0 @@
-# $FreeBSD$
-
-failures=0
-
-check() {
- if ! eval "[ $* ]"; then
- echo "Failed: $*"
- : $((failures += 1))
- fi
-}
-
-check '"$(PATH=/libexec command -V ld-elf.so.1)" = "ld-elf.so.1 is /libexec/ld-elf.so.1"'
-check '"$(PATH=/libexec command -V ld-elf.so.1; :)" = "ld-elf.so.1 is /libexec/ld-elf.so.1"'
-check '"$(PATH=/libexec command -pv ld-elf.so.1)" = ""'
-check '"$(PATH=/libexec command -pv ld-elf.so.1; :)" = ""'
-
-PATH=/libexec:$PATH
-
-check '"$(command -V ld-elf.so.1)" = "ld-elf.so.1 is /libexec/ld-elf.so.1"'
-check '"$(command -V ld-elf.so.1; :)" = "ld-elf.so.1 is /libexec/ld-elf.so.1"'
-check '"$(command -pv ld-elf.so.1)" = ""'
-check '"$(command -pv ld-elf.so.1; :)" = ""'
-
-PATH=/libexec
-
-check '"$(command -v ls)" = ""'
-case $(command -pv ls) in
-/*/ls) ;;
-*)
- echo "Failed: \$(command -pv ls) match /*/ls"
- : $((failures += 1)) ;;
-esac
-
-exit $((failures > 0))
OpenPOWER on IntegriCloud