busybox/testsuite
Rob Landley 3a324754f8 I'm about to introduce tests that need to run as root (like mount.tests),
meaning we want to run them in a chroot environment.  To help with this,
I worked out a utility function that makes it really easy to set up a chroot
environment.
2006-03-09 22:04:33 +00:00
..
basename
bunzip2
cat
cmp
cp
cut
date
dd
dirname
du
echo
expr
false
find
gunzip
gzip
head
hostid
hostname
id
ln
ls use LC_ALL, not LANG, for forcing C 2006-01-25 22:46:25 +00:00
md5sum
mkdir
msh
mv
pwd
rm
rmdir
strings
tail
tar
tee
touch
tr
true
uptime
uuencode
wc
wget
which
xargs
busybox.tests test to make sure applets are in alphabetical order 2006-02-22 23:38:57 +00:00
egrep.tests Fix the test suite so that individual *.tests files can be run ala 2005-11-07 08:50:53 +00:00
grep.tests Fix the test suite so that individual *.tests files can be run ala 2005-11-07 08:50:53 +00:00
pidof.tests Fix the test suite so that individual *.tests files can be run ala 2005-11-07 08:50:53 +00:00
README
runtest Putting together OPTIONFLAGS, sed needs the global flag to handle multiple 2006-02-16 09:25:31 +00:00
sed.tests Yet more sed tests. Passing these is a to-do item for 1.1.2 or 1.2, not a 2006-03-01 16:32:01 +00:00
seq.tests When gnu fails this one we shouldn't let it _hang_... 2006-03-01 16:32:35 +00:00
sort.tests Fix the test suite so that individual *.tests files can be run ala 2005-11-07 08:50:53 +00:00
testing.sh I'm about to introduce tests that need to run as root (like mount.tests), 2006-03-09 22:04:33 +00:00
TODO It was a bit out of date. 2005-11-07 09:06:34 +00:00
uniq.tests Fix the test suite so that individual *.tests files can be run ala 2005-11-07 08:50:53 +00:00

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, specify them as parameters to runtest.

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.