add SKIP_KNOWN_BUGS and SKIP_INTERNET_TESTS to testsuite
authorDenys Vlasenko <vda.linux@googlemail.com>
Sat, 18 Jul 2009 13:19:41 +0000 (15:19 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sat, 18 Jul 2009 13:19:41 +0000 (15:19 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
testsuite/README
testsuite/hostname/hostname-i-works
testsuite/ls/ls-l-works
testsuite/ls/ls-s-works
testsuite/taskset.tests
testsuite/wget/wget--O-overrides--P
testsuite/wget/wget-handles-empty-path
testsuite/wget/wget-retrieves-google-index
testsuite/wget/wget-supports--P

index b4719e64cc17186a65c628c6a8313e79655fa03e..3c52254dd2efc233415f2594f7e7131d3730db21 100644 (file)
@@ -10,10 +10,24 @@ name of the test case should be the assertion that is tested.  The test case
 should be a shell fragment that returns successfully if the test case passes,
 and unsuccessfully otherwise.
 
+Set SKIP_KNOWN_BUGS environment variable to any non-empty value
+to exclude tests which are known to fail.
+
+Set SKIP_INTERNET_TESTS to exclude tests which require working
+internet connection.
+
 If the test case relies on a certain feature, it should include the string
 "FEATURE: " followed by the name of the feature in a comment.  If it is always
 expected to fail, it should include the string "XFAIL" in a comment.
 
+
+Common causes of false positives:
+
+For busybox built against uclibc, /etc/TZ does not exist or does not match
+host system timezone setting. For glibc based host systems, timezona settings
+are in /etc/localtime.
+
+
 For the entire testsuite, the copyright is as follows:
 
 Copyright (C) 2001, 2002  Matt Kraai
index 68a3e6789ed1db18afda6d6551b4de09ff482432..7299bffa94df3c7e17849b3b7d06c55ef6b3fb08 100644 (file)
@@ -1,2 +1,9 @@
-test x$(hostname -i) = x$(busybox hostname -i)
+test x"$SKIP_KNOWN_BUGS" != x"" && exit
+
+# Observed bug:
+# # ./busybox hostname -i
+# 127.0.0.1
+# # hostname -i
+# 127.0.0.1 10.0.0.2 10.32.10.45
 
+test x$(hostname -i) = x$(busybox hostname -i)
index 1bad34bcf50c9d374d420f1c0ad7d080c3158e02..ce08810a4684dbe990c7d8cc2422e84e8f045990 100644 (file)
@@ -1,3 +1,7 @@
+test x"$SKIP_KNOWN_BUGS" != x"" && exit
+
+# busybox does not emit "total NNN" line
+
 [ -n "$d" ] || d=..
 LC_ALL=C ls -l "$d" > logfile.gnu
 LC_ALL=C busybox ls -l "$d" > logfile.bb
index 0a9d7526f3e372ba1dd42d7e20154be5ed03d8d2..8bf5c64fbaecde9a6cf75406d58b41d159af8992 100644 (file)
@@ -1,3 +1,7 @@
+test x"$SKIP_KNOWN_BUGS" != x"" && exit
+
+# busybox does not emit "total NNN" line
+
 [ -n "$d" ] || d=..
 LC_ALL=C ls -1s "$d" > logfile.gnu
 LC_ALL=C busybox ls -1s "$d" > logfile.bb
index 2d3ebd78b5f75aa4ee3a31bdeb90c9b1c5327199..53d7f10dafe1dfe95f103be6e373360fe7076491 100755 (executable)
@@ -1,5 +1,4 @@
 #!/bin/sh
-
 # Copyright 2006 Bernhard Reutner-Fischer
 # Licensed under GPL v2 or later, see file LICENSE for details.
 
index fdb5d47c026b635d0039121384b4914ccb2165a3..40a3a962c3f7fa814cb0983948a25e1291c8fd54 100644 (file)
@@ -1,3 +1,5 @@
+test x"$SKIP_INTERNET_TESTS" != x"" && exit
+
 mkdir foo
 busybox wget -q -O index.html -P foo http://www.google.com/
 test -s index.html
index 5b591837a97eeaabc7310599d744f96ca847efde..01d60bd0e103785939fdcb50017aac96a3c45816 100644 (file)
@@ -1 +1,3 @@
+test x"$SKIP_INTERNET_TESTS" != x"" && exit
+
 busybox wget http://www.google.com
index 7be9a80873176a9f0be3f4fd9b0cedf103e6b5ec..f9dbb8be8719bff7c064da43f0cfec4904063ecb 100644 (file)
@@ -1,2 +1,4 @@
+test x"$SKIP_INTERNET_TESTS" != x"" && exit
+
 busybox wget -q -O foo http://www.google.com/
 test -s foo
index 9b4d095e660a0d4d251b699187d671e615e23db2..bfe4ac45ea2a7ba40a5b25fa5b4a913ca82e48e6 100644 (file)
@@ -1,3 +1,5 @@
+test x"$SKIP_INTERNET_TESTS" != x"" && exit
+
 mkdir foo
 busybox wget -q -P foo http://www.google.com/
 test -s foo/index.html