aboutsummaryrefslogtreecommitdiff
path: root/testsuite
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/bunzip2.tests4
-rwxr-xr-xtestsuite/bzcat.tests4
-rw-r--r--testsuite/cp/cp-a-files-to-dir2
-rw-r--r--testsuite/mv/mv-files-to-dir2
-rw-r--r--testsuite/mv/mv-refuses-mv-dir-to-subdir2
-rwxr-xr-xtestsuite/runtest11
6 files changed, 15 insertions, 10 deletions
diff --git a/testsuite/bunzip2.tests b/testsuite/bunzip2.tests
index a7555aca9..7875cd1ae 100755
--- a/testsuite/bunzip2.tests
+++ b/testsuite/bunzip2.tests
@@ -517,8 +517,8 @@ if test "${0##*/}" = "bunzip2.tests"; then
517 if test1_bz2 | ${bb}bunzip2 >/dev/null \ 517 if test1_bz2 | ${bb}bunzip2 >/dev/null \
518 && test "`test1_bz2 | ${bb}bunzip2 | md5sum`" = "61bbeee4be9c6f110a71447f584fda7b -" 518 && test "`test1_bz2 | ${bb}bunzip2 | md5sum`" = "61bbeee4be9c6f110a71447f584fda7b -"
519 then 519 then
520 echo "$unpack: test bz2 file: PASS" 520 echo "PASS: $unpack: test bz2 file"
521 else 521 else
522 echo "$unpack: test bz2 file: FAIL" 522 echo "FAIL: $unpack: test bz2 file"
523 fi 523 fi
524fi 524fi
diff --git a/testsuite/bzcat.tests b/testsuite/bzcat.tests
index 0bc744244..78d74f229 100755
--- a/testsuite/bzcat.tests
+++ b/testsuite/bzcat.tests
@@ -32,9 +32,9 @@ prep() {
32check() { 32check() {
33 eval $2 >t_actual 2>&1 33 eval $2 >t_actual 2>&1
34 if $ECHO -ne "$expected" | cmp - t_actual; then 34 if $ECHO -ne "$expected" | cmp - t_actual; then
35 echo "$1: PASS" 35 echo "PASS: $1"
36 else 36 else
37 echo "$1: FAIL" 37 echo "FAIL: $1"
38 fi 38 fi
39} 39}
40 40
diff --git a/testsuite/cp/cp-a-files-to-dir b/testsuite/cp/cp-a-files-to-dir
index abdbdf77d..b199ef9b9 100644
--- a/testsuite/cp/cp-a-files-to-dir
+++ b/testsuite/cp/cp-a-files-to-dir
@@ -3,7 +3,7 @@ echo file number two > file2
3ln -s file2 link1 3ln -s file2 link1
4mkdir dir1 4mkdir dir1
5# why??? 5# why???
6#touch --date='Sat Jan 29 21:24:08 PST 2000' dir1/file3 6#TZ=UTC0 touch -d '2000-01-30 05:24:08' dir1/file3
7mkdir there 7mkdir there
8busybox cp -a file1 file2 link1 dir1 there 8busybox cp -a file1 file2 link1 dir1 there
9test -f there/file1 9test -f there/file1
diff --git a/testsuite/mv/mv-files-to-dir b/testsuite/mv/mv-files-to-dir
index c8eaba88e..2b567f77f 100644
--- a/testsuite/mv/mv-files-to-dir
+++ b/testsuite/mv/mv-files-to-dir
@@ -2,7 +2,7 @@ echo file number one > file1
2echo file number two > file2 2echo file number two > file2
3ln -s file2 link1 3ln -s file2 link1
4mkdir dir1 4mkdir dir1
5touch --date='Sat Jan 29 21:24:08 PST 2000' dir1/file3 5TZ=UTC0 touch -d '2000-01-30 05:24:08' dir1/file3
6mkdir there 6mkdir there
7busybox mv file1 file2 link1 dir1 there 7busybox mv file1 file2 link1 dir1 there
8test -f there/file1 8test -f there/file1
diff --git a/testsuite/mv/mv-refuses-mv-dir-to-subdir b/testsuite/mv/mv-refuses-mv-dir-to-subdir
index 7c572c4f8..3bad131a6 100644
--- a/testsuite/mv/mv-refuses-mv-dir-to-subdir
+++ b/testsuite/mv/mv-refuses-mv-dir-to-subdir
@@ -2,7 +2,7 @@ echo file number one > file1
2echo file number two > file2 2echo file number two > file2
3ln -s file2 link1 3ln -s file2 link1
4mkdir dir1 4mkdir dir1
5touch --date='Sat Jan 29 21:24:08 PST 2000' dir1/file3 5TZ=UTC0 touch -d '2000-01-30 05:24:08' dir1/file3
6mkdir there 6mkdir there
7busybox mv file1 file2 link1 dir1 there 7busybox mv file1 file2 link1 dir1 there
8test -f there/file1 8test -f there/file1
diff --git a/testsuite/runtest b/testsuite/runtest
index 2d60591fb..5560f7bc2 100755
--- a/testsuite/runtest
+++ b/testsuite/runtest
@@ -120,12 +120,17 @@ fi
120 120
121# Populate a directory with links to all busybox applets 121# Populate a directory with links to all busybox applets
122 122
123# Note: if $LINKSDIR/applet exists, we do not overwrite it.
124# Useful if one wants to run tests against a standard utility, not an applet.
125LINKSDIR="$bindir/runtest-tempdir-links" 123LINKSDIR="$bindir/runtest-tempdir-links"
126#rm -rf "$LINKSDIR" 2>/dev/null 124
125# Comment this line out if you have put a different binary in $LINKSDIR
126# (say, a "standard" tool's binary) in order to run tests against it:
127rm -rf "$LINKSDIR" 2>/dev/null
128
127mkdir "$LINKSDIR" 2>/dev/null 129mkdir "$LINKSDIR" 2>/dev/null
128for i in $implemented; do 130for i in $implemented; do
131 # Note: if $LINKSDIR/applet exists, we do not overwrite it.
132 # Useful if one wants to run tests against a standard utility,
133 # not an applet.
129 ln -s "$bindir/busybox" "$LINKSDIR/$i" 2>/dev/null 134 ln -s "$bindir/busybox" "$LINKSDIR/$i" 2>/dev/null
130done 135done
131 136