From: Ralf Wildenhues Date: Tue, 19 May 2009 05:49:27 +0000 (+0200) Subject: Revert last patch, IRIX has an editor named `jot'. X-Git-Tag: v1.11.1~17^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2da14d759b317983dd3a623fd0b213788996fca6;p=thirdparty%2Fautomake.git Revert last patch, IRIX has an editor named `jot'. * tests/instmany-mans.test: Do not try `jot'. * tests/instmany-python.test: Likewise. * tests/instmany.test: Likewise. Report by Peter O'Gorman. Signed-off-by: Ralf Wildenhues --- diff --git a/ChangeLog b/ChangeLog index 0aaeaadf5..16ecd99b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2009-05-19 Ralf Wildenhues + + Revert last patch, IRIX has an editor named `jot'. + * tests/instmany-mans.test: Do not try `jot'. + * tests/instmany-python.test: Likewise. + * tests/instmany.test: Likewise. + Report by Peter O'Gorman. + 2009-05-18 Ralf Wildenhues testsuite: also try `jot' as `seq' replacement. diff --git a/tests/instmany-mans.test b/tests/instmany-mans.test index 5fafa671d..fcee60b8d 100755 --- a/tests/instmany-mans.test +++ b/tests/instmany-mans.test @@ -31,8 +31,8 @@ limit=2500 subdir=long_subdir_name_with_many_characters nfiles=81 -# Let's use `seq' or `jot' if available, they are faster than the loop. -list=`(seq 1 $nfiles) 2>/dev/null || (jot $nfiles) 2>/dev/null || { +# Let's use `seq' if available, it's faster than the loop. +list=`(seq 1 $nfiles) 2>/dev/null || { i=1 while test $i -le $nfiles; do echo $i diff --git a/tests/instmany-python.test b/tests/instmany-python.test index 940794811..6831c9ed9 100755 --- a/tests/instmany-python.test +++ b/tests/instmany-python.test @@ -27,7 +27,7 @@ limit=2500 subdir=long_subdir_name_with_many_characters nfiles=81 -list=`(seq 1 $nfiles) 2>/dev/null || (jot $nfiles) 2>/dev/null || { +list=`(seq 1 $nfiles) 2>/dev/null || { i=1 while test $i -le $nfiles; do echo $i diff --git a/tests/instmany.test b/tests/instmany.test index e423710b0..a3b10cbce 100755 --- a/tests/instmany.test +++ b/tests/instmany.test @@ -39,8 +39,8 @@ limit=2500 subdir=long_subdir_name_with_many_characters nfiles=81 -# Let's use `seq' or `jot' if available, they are faster than the loop. -list=`(seq 1 $nfiles) 2>/dev/null || (jot $nfiles) 2>/dev/null || { +# Let's use `seq' if available, it's faster than the loop. +list=`(seq 1 $nfiles) 2>/dev/null || { i=1 while test $i -le $nfiles; do echo $i