aboutsummaryrefslogtreecommitdiff
path: root/testsuite/busybox.tests
diff options
context:
space:
mode:
authorlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-11-07 08:50:53 +0000
committerlandley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277>2005-11-07 08:50:53 +0000
commit9c6e894573366c7293159047c143a89b1032c626 (patch)
treecdc8aa6b83e2370c00f38dca9b93722736bcff32 /testsuite/busybox.tests
parentc8b221f03a3dc71b2aceac2dcb0f2877e7ba9bb3 (diff)
downloadbusybox-w32-9c6e894573366c7293159047c143a89b1032c626.tar.gz
busybox-w32-9c6e894573366c7293159047c143a89b1032c626.tar.bz2
busybox-w32-9c6e894573366c7293159047c143a89b1032c626.zip
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... git-svn-id: svn://busybox.net/trunk/busybox@12176 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'testsuite/busybox.tests')
-rwxr-xr-xtestsuite/busybox.tests13
1 files changed, 4 insertions, 9 deletions
diff --git a/testsuite/busybox.tests b/testsuite/busybox.tests
index 7595d061f..b69272593 100755
--- a/testsuite/busybox.tests
+++ b/testsuite/busybox.tests
@@ -7,15 +7,9 @@
7if [ ${#COMMAND} -eq 0 ]; then COMMAND=busybox; fi 7if [ ${#COMMAND} -eq 0 ]; then COMMAND=busybox; fi
8. testing.sh 8. testing.sh
9 9
10# Depends on nothing
11_BB_CONFIG_DEP=""
12
13# We'll assume "cat" is built in, because we need some other command to test.
14
15HELPDUMP=`$COMMAND` 10HELPDUMP=`$COMMAND`
16 11
17# The gratuitous "\n"s are due to a shell idiosyncrasy: environment variables 12# We need to test under calling the binary under other names.
18# seem to strip trailing whitespace, which makes cmp and diff unhappy.
19 13
20ln -s `which "$COMMAND"` busybox-suffix 14ln -s `which "$COMMAND"` busybox-suffix
21ln -s `which "$COMMAND"` unknown 15ln -s `which "$COMMAND"` unknown
@@ -29,15 +23,16 @@ do
29 23
30 testing "$i" "" "$HELPDUMP\n\n" "" "" 24 testing "$i" "" "$HELPDUMP\n\n" "" ""
31 25
32 testing "$i cat" "cat" "moo" "" "moo"
33
34 testing "$i unknown" "unknown 2>&1" \ 26 testing "$i unknown" "unknown 2>&1" \
35 "unknown: applet not found\n" "" "" 27 "unknown: applet not found\n" "" ""
36 28
37 testing "$i --help" "--help 2>&1" "$HELPDUMP\n\n" "" "" 29 testing "$i --help" "--help 2>&1" "$HELPDUMP\n\n" "" ""
38 30
31 optional CAT
32 testing "$i cat" "cat" "moo" "" "moo"
39 testing "$i --help cat" "--help cat 2>&1 | grep prints" \ 33 testing "$i --help cat" "--help cat 2>&1 | grep prints" \
40 "Concatenates FILE(s) and prints them to stdout.\n" "" "" 34 "Concatenates FILE(s) and prints them to stdout.\n" "" ""
35 optional ""
41 36
42 testing "$i --help unknown" "--help unknown 2>&1" \ 37 testing "$i --help unknown" "--help unknown 2>&1" \
43 "unknown: applet not found\n" "" "" 38 "unknown: applet not found\n" "" ""