Skip to content

Commit

Permalink
test: drop perl requirement
Browse files Browse the repository at this point in the history
Since perl is used in just one place and can easily be replaced by a
little bit of shell, do so.  This makes testing on limited systems
easier.

Signed-off-by: Mike Frysinger <[email protected]>
  • Loading branch information
vapier authored and jrosdahl committed May 16, 2015
1 parent 10c116e commit f9fd102
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ In addition to the prerequisites mentioned above, you also need:

To debug and run the performance test suite you'll also need:

- Perl (http://www.perl.org/)
- Python (http://www.python.org/)

Run "./autogen.sh" and then follow the steps mentioned under "Installation"
Expand Down
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1834,7 +1834,7 @@ prepare_cleanup_test() {
mkdir -p $dir
i=0
while [ $i -lt 10 ]; do
perl -e 'print "A" x 4017' >$dir/result$i-4017.o
printf '%4017s' '' | tr ' ' 'A' >$dir/result$i-4017.o
touch $dir/result$i-4017.stderr
touch $dir/result$i-4017.d
if [ $i -gt 5 ]; then
Expand Down

0 comments on commit f9fd102

Please sign in to comment.