]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
test for fix of 2003-08-11
authorJim Meyering <jim@meyering.net>
Mon, 11 Aug 2003 14:35:13 +0000 (14:35 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 11 Aug 2003 14:35:13 +0000 (14:35 +0000)
tests/misc/fold [new file with mode: 0755]

diff --git a/tests/misc/fold b/tests/misc/fold
new file mode 100755 (executable)
index 0000000..3c762cc
--- /dev/null
@@ -0,0 +1,40 @@
+#!/bin/sh
+# -*- perl -*-
+# Exercise fold.
+
+: ${PERL=perl}
+: ${srcdir=.}
+
+$PERL -e 1 > /dev/null 2>&1 || {
+  echo 1>&2 "$0: configure didn't find a usable version of Perl," \
+    "so can't run this test"
+  exit 77
+}
+
+exec $PERL -w -I$srcdir/.. -MFetish -- - <<\EOF
+#/
+require 5.003;
+use strict;
+
+(my $program_name = $0) =~ s|.*/||;
+
+$ENV{PROG} = 'fold';
+
+# Turn off localization of executable's ouput.
+@ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3;
+
+my @Tests =
+  (
+   ['s1', '-w2 -s', {IN=>"a\t"}, {OUT=>"a\n\t"}],
+   ['s2', '-w4 -s', {IN=>"abcdef d\n"}, {OUT=>"abcd\nef d\n"}],
+   ['s3', '-w4 -s', {IN=>"a cd fgh\n"}, {OUT=>"a \ncd \nfgh\n"}],
+   ['s4', '-w4 -s', {IN=>"abc ef\n"}, {OUT=>"abc \nef\n"}],
+  );
+
+my $save_temps = $ENV{DEBUG};
+my $verbose = $ENV{VERBOSE};
+
+my $prog = $ENV{PROG} || die "$0: \$PROG not specified in environment\n";
+my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose);
+exit $fail;
+EOF