summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-02-21 19:53:35 +0000
committerJim Meyering <jim@meyering.net>1996-02-21 19:53:35 +0000
commit79b86f69e60cb39c2d2a01392512de38a33dea7d (patch)
tree4d457fd3995922fe593d64a57497b4a0a0953b0f /tests
parent4d81490eb3ab0792e99602930bd16bd0b9c0089d (diff)
downloadcoreutils-79b86f69e60cb39c2d2a01392512de38a33dea7d.tar.xz
.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/join/build-script2
-rwxr-xr-xtests/join/test.data.pl3
2 files changed, 4 insertions, 1 deletions
diff --git a/tests/join/build-script b/tests/join/build-script
index f31a27112..c55cf3449 100755
--- a/tests/join/build-script
+++ b/tests/join/build-script
@@ -1,4 +1,4 @@
-#!/p/bin/perl5.000 -w
+#!/usr/bin/perl -w
$join = 'join';
$join = '/usr/bin/join';
diff --git a/tests/join/test.data.pl b/tests/join/test.data.pl
index ed1abd784..77fe07858 100755
--- a/tests/join/test.data.pl
+++ b/tests/join/test.data.pl
@@ -47,3 +47,6 @@
('8a', '-a1 -e . -o 0,1.2', "a\nb\nc\nd G\n", "a x y\nb\nc\ne\n", "a .\nb .\nc .\nd G\n", 0);
('8b', '-a1 -a2 -e . -o 0,1.2', "a\nb\nc\nd G\n", "a x y\nb\nc\ne\n", "a .\nb .\nc .\nd G\ne .\n", 0);
+
+# From David Dyck
+('9a', '', " a 1\n b 2\n", " a Y\n b Z\n", "a 1 Y\nb 2 Z\n", 0);