···11-Since perl is used in just one place and can easily be replaced by a
22-little bit of shell, do so. This makes testing on limited systems
33-easier.
44-55-Signed-off-by: Mike Frysinger <vapier@gentoo.org>
66----
77- INSTALL.txt | 1 -
88- test.sh | 2 +-
99- 2 files changed, 1 insertion(+), 2 deletions(-)
1010-1111-diff --git a/INSTALL.txt b/INSTALL.txt
1212-index 256beab..f77cbe6 100644
1313---- a/INSTALL.txt
1414-+++ b/INSTALL.txt
1515-@@ -67,7 +67,6 @@ In addition to the prerequisites mentioned above, you also need:
1616-1717- To debug and run the performance test suite you'll also need:
1818-1919--- Perl (http://www.perl.org/)
2020- - Python (http://www.python.org/)
2121-2222- Run "./autogen.sh" and then follow the steps mentioned under "Installation"
2323-diff --git a/test.sh b/test.sh
2424-index f14e287..1090649 100755
2525---- a/test.sh
2626-+++ b/test.sh
2727-@@ -1834,7 +1834,7 @@ prepare_cleanup_test() {
2828- mkdir -p $dir
2929- i=0
3030- while [ $i -lt 10 ]; do
3131-- perl -e 'print "A" x 4017' >$dir/result$i-4017.o
3232-+ printf '%4017s' '' | tr ' ' 'A' >$dir/result$i-4017.o
3333- touch $dir/result$i-4017.stderr
3434- touch $dir/result$i-4017.d
3535- if [ $i -gt 5 ]; then
3636---