48c6157eb9
COMMAND=sort ./sort.tests So we can compare against non-busybox versions, and possibly our testsuite will be useful to somebody like the Linux Test Project someday. Redid testing.sh to add new command, "optional", to skip tests that require certain features. (use: `optional FEATURE_SORT_BIG`, or `optional ""` to stop skipping.) Note that optional is a NOP if the environment variable "OPTIONFLAGS" is blank, so although we're marking up the tests with busybox specific knowledge, it doesn't interfere with running the tests without busybox. Moved setting the "OPTIONFLAGS" environment variable to runtest. Philosophy: busybox-specific stuff belongs in runtest; both testing.sh and the tests themselves should be as busybox-agnostic as possible. Moved detecting that a command isn't in busybox at all (hence skipping the entire command.tests file) to runtests. Rationale: optional can't currently test for more than one feature at a time, so if we clear anything with optional "" we might perform tests we don't want to. Marked up busybox.tests to know which tests need CAT enabled. Fixed up other tests to be happy with new notation. I suspect egrep should be appended to grep. It's a sub-feature, really...
28 lines
732 B
Bash
Executable File
28 lines
732 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# pidof tests.
|
|
# Copyright 2005 by Bernhard Fischer
|
|
# Licensed under GPL v2, see file LICENSE for details.
|
|
|
|
# AUDIT:
|
|
|
|
[ ${#COMMAND} -eq 0 ] && COMMAND=pidof
|
|
. testing.sh
|
|
|
|
# testing "test name" "options" "expected result" "file input" "stdin"
|
|
|
|
testing "pidof (exit with error)" "veryunlikelyoccuringbinaryname ; echo \$?" \
|
|
"\n1\n" "" ""
|
|
testing "pidof (exit with success)" "pidof > /dev/null; echo \$?" "0\n" "" ""
|
|
|
|
|
|
optional FEATURE_PIDOF_SINGLE
|
|
testing "pidof -s" "-s $(basename $0) ; echo -n \$?" \
|
|
"$(pidof -s $(basename $0) ; echo -n $?)" "" ""
|
|
|
|
optional FEATURE_PIDOF_OMIT
|
|
testing "pidof -o %PPID" "$(basename $0) -o %PPID ; echo -n \$?" \
|
|
"$(pidof $(basename $0) -o %PPID ; echo -n $?)" "" ""
|
|
|
|
exit $FAILCOUNT
|