diff options
author | Matt Kraai <kraai@debian.org> | 2002-02-19 23:38:08 +0000 |
---|---|---|
committer | Matt Kraai <kraai@debian.org> | 2002-02-19 23:38:08 +0000 |
commit | 7c71822809f60845ba3cd9fa3f88251f359b42e0 (patch) | |
tree | 93a2a761e744fb866e0273c7335d91291e518201 | |
parent | b5b757eb8d2b739cad1fac2aa1a2d4c95fc29358 (diff) | |
download | busybox-w32-7c71822809f60845ba3cd9fa3f88251f359b42e0.tar.gz busybox-w32-7c71822809f60845ba3cd9fa3f88251f359b42e0.tar.bz2 busybox-w32-7c71822809f60845ba3cd9fa3f88251f359b42e0.zip |
* testsuite/runtest (run_applet_testcase): Return UNTESTED instead of
UNSUPPORTED for missing applets and features.
-rwxr-xr-x | testsuite/runtest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/runtest b/testsuite/runtest index 2e8d391e0..ba7deeb58 100755 --- a/testsuite/runtest +++ b/testsuite/runtest | |||
@@ -32,7 +32,7 @@ run_applet_testcase () | |||
32 | local testname=$(basename $testcase) | 32 | local testname=$(basename $testcase) |
33 | 33 | ||
34 | if grep -q "^# CONFIG_${uc_applet} is not set$" ../.config; then | 34 | if grep -q "^# CONFIG_${uc_applet} is not set$" ../.config; then |
35 | show_result UNSUPPORTED $testname | 35 | show_result UNTESTED $testname |
36 | return 0 | 36 | return 0 |
37 | fi | 37 | fi |
38 | 38 | ||
@@ -40,7 +40,7 @@ run_applet_testcase () | |||
40 | local feature=`sed -ne 's/.*UNSUPPORTED: //p' $testcase` | 40 | local feature=`sed -ne 's/.*UNSUPPORTED: //p' $testcase` |
41 | 41 | ||
42 | if grep -q "^# ${feature} is not set$" ../.config; then | 42 | if grep -q "^# ${feature} is not set$" ../.config; then |
43 | show_result UNSUPPORTED $testname | 43 | show_result UNTESTED $testname |
44 | return 0 | 44 | return 0 |
45 | fi | 45 | fi |
46 | fi | 46 | fi |