* tests/tap-functions.sh (skip_row_): Use `seq_', not `seq', to
be portable to non-GNU systems.
Bug revealed by a testsuite error on Solaris.
+2011-09-08 Stefano Lattarini <stefano.lattarini@gmail.com>
+
+ testsuite: fix `skip_row_' in tap-functions.sh
+ * tests/tap-functions.sh (skip_row_): Use `seq_', not `seq', to
+ be portable to non-GNU systems.
+ Bug revealed by a testsuite error on Solaris.
+
2011-09-08 Stefano Lattarini <stefano.lattarini@gmail.com>
installcheck: support it in our own testsuite
skip_row_ ()
{
skip_count_=$1; shift
- for i_ in `seq $skip_count_`; do skip_ ${1+"$@"}; done
+ for i_ in `seq_ $skip_count_`; do skip_ ${1+"$@"}; done
}
# skip_all_ [REASON ...]