aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-11-04 18:41:22 -0500
committerMike Frysinger <vapier@gentoo.org>2009-11-04 18:41:22 -0500
commitcaa79406aa3d9aac512ad5a32968398cb1c2dde0 (patch)
tree887b18e662c0675b8b700250dac715a52a91d0cf
parentf8a73bfa332c540f7f877132736905285c24249c (diff)
downloadbusybox-w32-caa79406aa3d9aac512ad5a32968398cb1c2dde0.tar.gz
busybox-w32-caa79406aa3d9aac512ad5a32968398cb1c2dde0.tar.bz2
busybox-w32-caa79406aa3d9aac512ad5a32968398cb1c2dde0.zip
tests: fix POSIX shell source style
The source command does not search $PWD, and bash recently fixed itself to follow this behavior for /bin/sh. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
-rwxr-xr-xtestsuite/all_sourcecode.tests2
-rwxr-xr-xtestsuite/awk.tests2
-rwxr-xr-xtestsuite/busybox.tests2
-rwxr-xr-xtestsuite/comm.tests2
-rwxr-xr-xtestsuite/cpio.tests2
-rwxr-xr-xtestsuite/cut.tests2
-rwxr-xr-xtestsuite/diff.tests2
-rwxr-xr-xtestsuite/expand.tests2
-rwxr-xr-xtestsuite/fold.tests2
-rwxr-xr-xtestsuite/grep.tests2
-rwxr-xr-xtestsuite/makedevs.tests2
-rwxr-xr-xtestsuite/mdev.tests2
-rwxr-xr-xtestsuite/mkfs.minix.tests2
-rwxr-xr-xtestsuite/mount.tests2
-rwxr-xr-xtestsuite/od.tests2
-rwxr-xr-xtestsuite/parse.tests2
-rwxr-xr-xtestsuite/patch.tests2
-rwxr-xr-xtestsuite/pidof.tests2
-rwxr-xr-xtestsuite/printf.tests2
-rwxr-xr-xtestsuite/readlink.tests2
-rwxr-xr-xtestsuite/rx.tests2
-rwxr-xr-xtestsuite/sed.tests2
-rwxr-xr-xtestsuite/seq.tests2
-rwxr-xr-xtestsuite/sort.tests4
-rwxr-xr-xtestsuite/start-stop-daemon.tests2
-rwxr-xr-xtestsuite/sum.tests2
-rwxr-xr-xtestsuite/tail.tests2
-rwxr-xr-xtestsuite/taskset.tests2
-rwxr-xr-xtestsuite/test.tests2
-rwxr-xr-xtestsuite/tr.tests2
-rwxr-xr-xtestsuite/unexpand.tests2
-rwxr-xr-xtestsuite/uniq.tests2
-rwxr-xr-xtestsuite/unzip.tests2
-rwxr-xr-xtestsuite/uuencode.tests2
-rwxr-xr-xtestsuite/xargs.tests2
35 files changed, 36 insertions, 36 deletions
diff --git a/testsuite/all_sourcecode.tests b/testsuite/all_sourcecode.tests
index 5b3f0388d..c0a1f863f 100755
--- a/testsuite/all_sourcecode.tests
+++ b/testsuite/all_sourcecode.tests
@@ -5,7 +5,7 @@
5# Licensed under GPL v2, see file LICENSE for details. 5# Licensed under GPL v2, see file LICENSE for details.
6 6
7[ -n "$srcdir" ] || srcdir=$(pwd) 7[ -n "$srcdir" ] || srcdir=$(pwd)
8. testing.sh 8. ./testing.sh
9 9
10 10
11# 11#
diff --git a/testsuite/awk.tests b/testsuite/awk.tests
index 0db99ab21..2c7642ce0 100755
--- a/testsuite/awk.tests
+++ b/testsuite/awk.tests
@@ -3,7 +3,7 @@
3# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com> 3# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
4# Licensed under GPL v2, see file LICENSE for details. 4# Licensed under GPL v2, see file LICENSE for details.
5 5
6. testing.sh 6. ./testing.sh
7 7
8# testing "description" "command" "result" "infile" "stdin" 8# testing "description" "command" "result" "infile" "stdin"
9 9
diff --git a/testsuite/busybox.tests b/testsuite/busybox.tests
index 26536c656..7c44b1ed6 100755
--- a/testsuite/busybox.tests
+++ b/testsuite/busybox.tests
@@ -4,7 +4,7 @@
4# Copyright 2005 by Rob Landley <rob@landley.net> 4# Copyright 2005 by Rob Landley <rob@landley.net>
5# Licensed under GPL v2, see file LICENSE for details. 5# Licensed under GPL v2, see file LICENSE for details.
6 6
7. testing.sh 7. ./testing.sh
8 8
9HELPDUMP=`busybox` 9HELPDUMP=`busybox`
10 10
diff --git a/testsuite/comm.tests b/testsuite/comm.tests
index 44169f9b7..753db217c 100755
--- a/testsuite/comm.tests
+++ b/testsuite/comm.tests
@@ -3,7 +3,7 @@
3# Copyright 2008 by Denys Vlasenko <vda.linux@googlemail.com> 3# Copyright 2008 by Denys Vlasenko <vda.linux@googlemail.com>
4# Licensed under GPL v2, see file LICENSE for details. 4# Licensed under GPL v2, see file LICENSE for details.
5 5
6. testing.sh 6. ./testing.sh
7 7
8# testing "description" "command" "result" "infile" "stdin" 8# testing "description" "command" "result" "infile" "stdin"
9 9
diff --git a/testsuite/cpio.tests b/testsuite/cpio.tests
index fa0b65a08..f21ba18d1 100755
--- a/testsuite/cpio.tests
+++ b/testsuite/cpio.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# ls -ln shows date. Need to remove that, it's variable. 7# ls -ln shows date. Need to remove that, it's variable.
8# sed: coalesce spaces 8# sed: coalesce spaces
diff --git a/testsuite/cut.tests b/testsuite/cut.tests
index 2788d1fbe..0fd79f2df 100755
--- a/testsuite/cut.tests
+++ b/testsuite/cut.tests
@@ -3,7 +3,7 @@
3# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com> 3# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
4# Licensed under GPL v2, see file LICENSE for details. 4# Licensed under GPL v2, see file LICENSE for details.
5 5
6. testing.sh 6. ./testing.sh
7 7
8# testing "test name" "options" "expected result" "file input" "stdin" 8# testing "test name" "options" "expected result" "file input" "stdin"
9# file input will be file called "input" 9# file input will be file called "input"
diff --git a/testsuite/diff.tests b/testsuite/diff.tests
index ac68a0890..bf24b7752 100755
--- a/testsuite/diff.tests
+++ b/testsuite/diff.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# testing "test name" "options" "expected result" "file input" "stdin" 7# testing "test name" "options" "expected result" "file input" "stdin"
8 8
diff --git a/testsuite/expand.tests b/testsuite/expand.tests
index 3f4cda3f8..57498a201 100755
--- a/testsuite/expand.tests
+++ b/testsuite/expand.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# testing "test name" "options" "expected result" "file input" "stdin" 7# testing "test name" "options" "expected result" "file input" "stdin"
8 8
diff --git a/testsuite/fold.tests b/testsuite/fold.tests
index 5e1f34552..ca0e511c1 100755
--- a/testsuite/fold.tests
+++ b/testsuite/fold.tests
@@ -2,7 +2,7 @@
2# Copyright 2009 by Denys Vlasenko 2# Copyright 2009 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# testing "test name" "options" "expected result" "file input" "stdin" 7# testing "test name" "options" "expected result" "file input" "stdin"
8 8
diff --git a/testsuite/grep.tests b/testsuite/grep.tests
index 7e3dff0d6..6e14f91ce 100755
--- a/testsuite/grep.tests
+++ b/testsuite/grep.tests
@@ -5,7 +5,7 @@
5 5
6# AUDIT: 6# AUDIT:
7 7
8. testing.sh 8. ./testing.sh
9 9
10# testing "test name" "options" "expected result" "file input" "stdin" 10# testing "test name" "options" "expected result" "file input" "stdin"
11# file input will be file called "input" 11# file input will be file called "input"
diff --git a/testsuite/makedevs.tests b/testsuite/makedevs.tests
index 9e068bdca..b41614f13 100755
--- a/testsuite/makedevs.tests
+++ b/testsuite/makedevs.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# ls -ln is showing date. Need to remove that, it's variable 7# ls -ln is showing date. Need to remove that, it's variable
8# sed: (1) "maj, min" -> "maj,min" (2) coalesce spaces 8# sed: (1) "maj, min" -> "maj,min" (2) coalesce spaces
diff --git a/testsuite/mdev.tests b/testsuite/mdev.tests
index d52f3b10b..319c670da 100755
--- a/testsuite/mdev.tests
+++ b/testsuite/mdev.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# ls -ln is showing date. Need to remove that, it's variable 7# ls -ln is showing date. Need to remove that, it's variable
8# sed: (1) "maj, min" -> "maj,min" (2) coalesce spaces 8# sed: (1) "maj, min" -> "maj,min" (2) coalesce spaces
diff --git a/testsuite/mkfs.minix.tests b/testsuite/mkfs.minix.tests
index 90df9316d..7cad7daa6 100755
--- a/testsuite/mkfs.minix.tests
+++ b/testsuite/mkfs.minix.tests
@@ -4,7 +4,7 @@
4# Copyright 2007 by Denys Vlasenko 4# Copyright 2007 by Denys Vlasenko
5# Licensed under GPL v2, see file LICENSE for details. 5# Licensed under GPL v2, see file LICENSE for details.
6 6
7. testing.sh 7. ./testing.sh
8 8
9# testing "test name" "options" "expected result" "file input" "stdin" 9# testing "test name" "options" "expected result" "file input" "stdin"
10 10
diff --git a/testsuite/mount.tests b/testsuite/mount.tests
index f4a2cc214..8bd60ea0c 100755
--- a/testsuite/mount.tests
+++ b/testsuite/mount.tests
@@ -2,7 +2,7 @@
2# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com> 2# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7test "`id -u`" = 0 || { 7test "`id -u`" = 0 || {
8 echo "SKIPPED: must be root to test this" 8 echo "SKIPPED: must be root to test this"
diff --git a/testsuite/od.tests b/testsuite/od.tests
index f136bb5fa..0bf1f4c54 100755
--- a/testsuite/od.tests
+++ b/testsuite/od.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# testing "test name" "options" "expected result" "file input" "stdin" 7# testing "test name" "options" "expected result" "file input" "stdin"
8 8
diff --git a/testsuite/parse.tests b/testsuite/parse.tests
index f1ee7b830..999efef1c 100755
--- a/testsuite/parse.tests
+++ b/testsuite/parse.tests
@@ -3,7 +3,7 @@
3# Copyright 2008 by Denys Vlasenko <vda.linux@googlemail.com> 3# Copyright 2008 by Denys Vlasenko <vda.linux@googlemail.com>
4# Licensed under GPL v2, see file LICENSE for details. 4# Licensed under GPL v2, see file LICENSE for details.
5 5
6. testing.sh 6. ./testing.sh
7 7
8COLLAPSE=$(( 0x00010000)) 8COLLAPSE=$(( 0x00010000))
9TRIM=$(( 0x00020000)) 9TRIM=$(( 0x00020000))
diff --git a/testsuite/patch.tests b/testsuite/patch.tests
index 1bdc0c24a..f3e607186 100755
--- a/testsuite/patch.tests
+++ b/testsuite/patch.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# testing "test name" "options" "expected result" "file input" "stdin" 7# testing "test name" "options" "expected result" "file input" "stdin"
8 8
diff --git a/testsuite/pidof.tests b/testsuite/pidof.tests
index a05a30239..45df1a958 100755
--- a/testsuite/pidof.tests
+++ b/testsuite/pidof.tests
@@ -6,7 +6,7 @@
6 6
7# AUDIT: 7# AUDIT:
8 8
9. testing.sh 9. ./testing.sh
10 10
11# testing "test name" "options" "expected result" "file input" "stdin" 11# testing "test name" "options" "expected result" "file input" "stdin"
12 12
diff --git a/testsuite/printf.tests b/testsuite/printf.tests
index 0a63f0f57..95f8110ad 100755
--- a/testsuite/printf.tests
+++ b/testsuite/printf.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# Need this in order to not execute shell builtin 7# Need this in order to not execute shell builtin
8bb="busybox " 8bb="busybox "
diff --git a/testsuite/readlink.tests b/testsuite/readlink.tests
index 0faa6ed0c..e6822dff1 100755
--- a/testsuite/readlink.tests
+++ b/testsuite/readlink.tests
@@ -4,7 +4,7 @@
4# Copyright 2006 by Natanael Copa <n@tanael.org> 4# Copyright 2006 by Natanael Copa <n@tanael.org>
5# Licensed under GPL v2, see file LICENSE for details. 5# Licensed under GPL v2, see file LICENSE for details.
6 6
7. testing.sh 7. ./testing.sh
8 8
9TESTDIR=readlink_testdir 9TESTDIR=readlink_testdir
10TESTFILE="$TESTDIR/testfile" 10TESTFILE="$TESTDIR/testfile"
diff --git a/testsuite/rx.tests b/testsuite/rx.tests
index 417f04b57..c2b8814a2 100755
--- a/testsuite/rx.tests
+++ b/testsuite/rx.tests
@@ -2,7 +2,7 @@
2# Copyright 2009 by Denys Vlasenko 2# Copyright 2009 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# testing "test name" "options" "expected result" "file input" "stdin" 7# testing "test name" "options" "expected result" "file input" "stdin"
8 8
diff --git a/testsuite/sed.tests b/testsuite/sed.tests
index 696d980ef..875c946be 100755
--- a/testsuite/sed.tests
+++ b/testsuite/sed.tests
@@ -4,7 +4,7 @@
4# Copyright 2005 by Rob Landley <rob@landley.net> 4# Copyright 2005 by Rob Landley <rob@landley.net>
5# Licensed under GPL v2, see file LICENSE for details. 5# Licensed under GPL v2, see file LICENSE for details.
6 6
7. testing.sh 7. ./testing.sh
8 8
9# testing "description" "arguments" "result" "infile" "stdin" 9# testing "description" "arguments" "result" "infile" "stdin"
10 10
diff --git a/testsuite/seq.tests b/testsuite/seq.tests
index 817e1a724..7a5537427 100755
--- a/testsuite/seq.tests
+++ b/testsuite/seq.tests
@@ -6,7 +6,7 @@
6 6
7# AUDIT: Full SUSv3 coverage (except internationalization). 7# AUDIT: Full SUSv3 coverage (except internationalization).
8 8
9. testing.sh 9. ./testing.sh
10 10
11# testing "test name" "options" "expected result" "file input" "stdin" 11# testing "test name" "options" "expected result" "file input" "stdin"
12# file input will be file called "input" 12# file input will be file called "input"
diff --git a/testsuite/sort.tests b/testsuite/sort.tests
index 627ca51f8..5ed29fb12 100755
--- a/testsuite/sort.tests
+++ b/testsuite/sort.tests
@@ -1,10 +1,10 @@
1#!/bin/bash 1#!/bin/sh
2 2
3# SUSv3 compliant sort tests. 3# SUSv3 compliant sort tests.
4# Copyright 2005 by Rob Landley <rob@landley.net> 4# Copyright 2005 by Rob Landley <rob@landley.net>
5# Licensed under GPL v2, see file LICENSE for details. 5# Licensed under GPL v2, see file LICENSE for details.
6 6
7. testing.sh 7. ./testing.sh
8 8
9# The basic tests. These should work even with the small busybox. 9# The basic tests. These should work even with the small busybox.
10 10
diff --git a/testsuite/start-stop-daemon.tests b/testsuite/start-stop-daemon.tests
index ba77cde6e..76b0be08c 100755
--- a/testsuite/start-stop-daemon.tests
+++ b/testsuite/start-stop-daemon.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# testing "test name" "cmd" "expected result" "file input" "stdin" 7# testing "test name" "cmd" "expected result" "file input" "stdin"
8 8
diff --git a/testsuite/sum.tests b/testsuite/sum.tests
index e537cf607..da278c787 100755
--- a/testsuite/sum.tests
+++ b/testsuite/sum.tests
@@ -6,7 +6,7 @@
6 6
7# AUDIT: Unit tests for sum 7# AUDIT: Unit tests for sum
8 8
9. testing.sh 9. ./testing.sh
10 10
11# testing "test name" "options" "expected result" "file input" "stdin" 11# testing "test name" "options" "expected result" "file input" "stdin"
12# file input will be file called "input" 12# file input will be file called "input"
diff --git a/testsuite/tail.tests b/testsuite/tail.tests
index d97bf7bbe..d2427d430 100755
--- a/testsuite/tail.tests
+++ b/testsuite/tail.tests
@@ -3,7 +3,7 @@
3# Copyright 2009 by Denys Vlasenko <vda.linux@googlemail.com> 3# Copyright 2009 by Denys Vlasenko <vda.linux@googlemail.com>
4# Licensed under GPL v2, see file LICENSE for details. 4# Licensed under GPL v2, see file LICENSE for details.
5 5
6. testing.sh 6. ./testing.sh
7 7
8# testing "test name" "command" "expected result" "file input" "stdin" 8# testing "test name" "command" "expected result" "file input" "stdin"
9# file input will be file called "input" 9# file input will be file called "input"
diff --git a/testsuite/taskset.tests b/testsuite/taskset.tests
index 53d7f10da..1a19285d7 100755
--- a/testsuite/taskset.tests
+++ b/testsuite/taskset.tests
@@ -2,7 +2,7 @@
2# Copyright 2006 Bernhard Reutner-Fischer 2# Copyright 2006 Bernhard Reutner-Fischer
3# Licensed under GPL v2 or later, see file LICENSE for details. 3# Licensed under GPL v2 or later, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6a="taskset" 6a="taskset"
7 7
8# testing "test name" "opts" "expected result" "file inp" "stdin" 8# testing "test name" "opts" "expected result" "file inp" "stdin"
diff --git a/testsuite/test.tests b/testsuite/test.tests
index b7c84d9b2..7d8044467 100755
--- a/testsuite/test.tests
+++ b/testsuite/test.tests
@@ -3,7 +3,7 @@
3# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com> 3# Copyright 2007 by Denys Vlasenko <vda.linux@googlemail.com>
4# Licensed under GPL v2, see file LICENSE for details. 4# Licensed under GPL v2, see file LICENSE for details.
5 5
6. testing.sh 6. ./testing.sh
7 7
8# testing "test name" "command" "expected result" "file input" "stdin" 8# testing "test name" "command" "expected result" "file input" "stdin"
9# file input will be file called "input" 9# file input will be file called "input"
diff --git a/testsuite/tr.tests b/testsuite/tr.tests
index f91cc1f65..9706056c9 100755
--- a/testsuite/tr.tests
+++ b/testsuite/tr.tests
@@ -3,7 +3,7 @@
3# Copyright 2009 by Denys Vlasenko <vda.linux@googlemail.com> 3# Copyright 2009 by Denys Vlasenko <vda.linux@googlemail.com>
4# Licensed under GPL v2, see file LICENSE for details. 4# Licensed under GPL v2, see file LICENSE for details.
5 5
6. testing.sh 6. ./testing.sh
7 7
8# testing "description" "arguments" "result" "infile" "stdin" 8# testing "description" "arguments" "result" "infile" "stdin"
9 9
diff --git a/testsuite/unexpand.tests b/testsuite/unexpand.tests
index e7f42c5fd..5c82a1e50 100755
--- a/testsuite/unexpand.tests
+++ b/testsuite/unexpand.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# testing "test name" "options" "expected result" "file input" "stdin" 7# testing "test name" "options" "expected result" "file input" "stdin"
8 8
diff --git a/testsuite/uniq.tests b/testsuite/uniq.tests
index 94c45592f..02c595a0e 100755
--- a/testsuite/uniq.tests
+++ b/testsuite/uniq.tests
@@ -6,7 +6,7 @@
6 6
7# AUDIT: Full SUSv3 coverage (except internationalization). 7# AUDIT: Full SUSv3 coverage (except internationalization).
8 8
9. testing.sh 9. ./testing.sh
10 10
11# testing "test name" "options" "expected result" "file input" "stdin" 11# testing "test name" "options" "expected result" "file input" "stdin"
12# file input will be file called "input" 12# file input will be file called "input"
diff --git a/testsuite/unzip.tests b/testsuite/unzip.tests
index 975079db6..0ce5da26c 100755
--- a/testsuite/unzip.tests
+++ b/testsuite/unzip.tests
@@ -5,7 +5,7 @@
5# Copyright 2006 Glenn McGrath 5# Copyright 2006 Glenn McGrath
6# Licensed under GPL v2, see file LICENSE for details. 6# Licensed under GPL v2, see file LICENSE for details.
7 7
8. testing.sh 8. ./testing.sh
9 9
10# testing "test name" "options" "expected result" "file input" "stdin" 10# testing "test name" "options" "expected result" "file input" "stdin"
11# file input will be file called "input" 11# file input will be file called "input"
diff --git a/testsuite/uuencode.tests b/testsuite/uuencode.tests
index cb658db3b..6556e60d1 100755
--- a/testsuite/uuencode.tests
+++ b/testsuite/uuencode.tests
@@ -6,7 +6,7 @@
6 6
7# AUDIT: Unit tests for uuencode 7# AUDIT: Unit tests for uuencode
8 8
9. testing.sh 9. ./testing.sh
10 10
11# testing "test name" "options" "expected result" "file input" "stdin" 11# testing "test name" "options" "expected result" "file input" "stdin"
12# file input will be file called "input" 12# file input will be file called "input"
diff --git a/testsuite/xargs.tests b/testsuite/xargs.tests
index 36524499e..17f4e7a1b 100755
--- a/testsuite/xargs.tests
+++ b/testsuite/xargs.tests
@@ -2,7 +2,7 @@
2# Copyright 2008 by Denys Vlasenko 2# Copyright 2008 by Denys Vlasenko
3# Licensed under GPL v2, see file LICENSE for details. 3# Licensed under GPL v2, see file LICENSE for details.
4 4
5. testing.sh 5. ./testing.sh
6 6
7# testing "test name" "command" "expected result" "file input" "stdin" 7# testing "test name" "command" "expected result" "file input" "stdin"
8 8