diff options
author | Rob Landley | 2005-11-07 08:50:53 +0000 |
---|---|---|
committer | Rob Landley | 2005-11-07 08:50:53 +0000 |
commit | 48c6157eb9c10bdca89af2792177afc0380ef9c5 (patch) | |
tree | cdc8aa6b83e2370c00f38dca9b93722736bcff32 /testsuite/pidof.tests | |
parent | 7ad4b30ed4ba2542bebcfc5fda9e9af24fb67969 (diff) | |
download | busybox-48c6157eb9c10bdca89af2792177afc0380ef9c5.zip busybox-48c6157eb9c10bdca89af2792177afc0380ef9c5.tar.gz |
Fix the test suite so that individual *.tests files can be run ala
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...
Diffstat (limited to 'testsuite/pidof.tests')
-rwxr-xr-x | testsuite/pidof.tests | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/testsuite/pidof.tests b/testsuite/pidof.tests index 0c303cf..0515522 100755 --- a/testsuite/pidof.tests +++ b/testsuite/pidof.tests @@ -16,13 +16,11 @@ testing "pidof (exit with error)" "veryunlikelyoccuringbinaryname ; echo \$?" \ testing "pidof (exit with success)" "pidof > /dev/null; echo \$?" "0\n" "" "" -# Depends on FEATURE_PIDOF_SINGLE -_BB_CONFIG_DEP=FEATURE_PIDOF_SINGLE +optional FEATURE_PIDOF_SINGLE testing "pidof -s" "-s $(basename $0) ; echo -n \$?" \ "$(pidof -s $(basename $0) ; echo -n $?)" "" "" -# Depends on FEATURE_PIDOF_OMIT -_BB_CONFIG_DEP=FEATURE_PIDOF_OMIT +optional FEATURE_PIDOF_OMIT testing "pidof -o %PPID" "$(basename $0) -o %PPID ; echo -n \$?" \ "$(pidof $(basename $0) -o %PPID ; echo -n $?)" "" "" |