busybox/testsuite
Ian Wienand 0a2c793bd6 grep: fix -Fi
function                                             old     new   delta
grep_file                                           1151    1169     +18

Signed-off-by: Ian Wienand <ianw@vmware.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2010-04-30 09:32:10 +02:00
..
basename
bunzip2
cat
cmp
cp testsuite fixes 2010-04-02 09:57:27 +02:00
cut
date testsuite-discovered fixes 2010-01-25 02:00:16 +01:00
dd
dirname
du
echo
expand
expr
false
find
gunzip
gzip
head
hostid
hostname
id
ln
ls
md5sum
mkdir
msh
mv
pwd
rm
rmdir
strings
tail
tar
tee
touch
tr
true
unexpand
uptime
wc
wget
which
xargs
all_sourcecode.tests
ar.tests ar: add archive creation support 2010-03-15 15:38:09 +01:00
ash.tests libbb/lineedit: add support for preserving "broken" (non-unicode) chars 2010-04-29 13:43:39 +02:00
awk_t1.tar.bz2
awk.tests awk: add two tests we currently fail 2010-03-11 08:27:53 +01:00
bunzip2.tests bunzip2.tests: replace $? with \$? 2010-01-17 19:08:39 +01:00
busybox.tests fix testing of busybox "applet" itself 2010-01-16 02:49:40 +01:00
bzcat.tests
cal.tests unicode: s/FEATURE_ASSUME_UNICODE/UNICODE_SUPPORT, add UNICODE_USING_LOCALE 2010-03-26 14:06:56 +01:00
comm.tests
cp.tests cp: improve test coverage 2010-01-16 02:27:31 +01:00
cpio.tests cpio: "NNN blocks" should go to stderr 2010-04-26 13:53:57 +02:00
cut.tests
diff.tests diff: fix flag -B, cleanups and a couple more tests V2 2010-01-22 04:20:16 +01:00
expand.tests [un]expand: unicode support 2010-01-04 16:21:31 +01:00
fold.tests fold: unicode support. Based on a patch by Tomas Heinrich <heinrich.tomas@gmail.com> 2010-01-04 20:49:58 +01:00
grep.tests grep: fix -Fi 2010-04-30 09:32:10 +02:00
gunzip.tests
ls.mk_uni_tests ls: unicode fixes 2010-01-31 05:15:38 +01:00
ls.tests unicode: s/FEATURE_ASSUME_UNICODE/UNICODE_SUPPORT, add UNICODE_USING_LOCALE 2010-03-26 14:06:56 +01:00
makedevs.device_table.txt
makedevs.tests
mdev.tests testsuite-discovered fixes 2010-01-25 02:00:16 +01:00
mkfs.minix.tests
mount.testroot
mount.tests testsuite fixes 2010-04-02 09:57:27 +02:00
od.tests
parse.tests
patch.tests
pidof.tests
printf.tests
readlink.tests
README
runtest testsuite fixes 2010-04-02 09:57:27 +02:00
rx.tests
sed.tests sed: fix nested {} case 2010-04-20 04:00:03 -04:00
seq.tests
sort.tests sort: make sort -o FILE FILE (same FILE) work. Closes bug 785. -3 bytes 2009-12-13 02:09:22 +01:00
start-stop-daemon.tests
sum.tests
tail.tests
tar.tests tar: fix "hardlinks to symlinks chown" bug 1519. 2010-04-09 14:11:45 +02:00
taskset.tests
test.tests
testing.sh
TODO
tr.tests
umlwrapper.sh
unexpand.tests unexpand: fix "a b"\n" input case 2010-03-26 09:46:07 +01:00
uniq.tests
unzip.tests
uuencode.tests
xargs.tests

To run the test suite, change to this directory and run "./runtest".  It will
run all of the test cases, and list those with unexpected outcomes.  Adding the
-v option will cause it to show expected outcomes as well.  To only run the test
cases for particular applets:

./runtest <applet1> <applet2>...

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.


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, timezone settings
are in /etc/localtime.

LANG and LC_xxx environment variables set to non-C locale.


Developer's notes:

The test cases for an applet reside in the subdirectory of the applet name.
The 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.

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.


For the entire testsuite, the copyright is as follows:

Copyright (C) 2001, 2002  Matt Kraai

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.