ptx: fix an invalid heap reference with short --width
[coreutils.git] / tests / misc / sort-benchmark-random.sh
blobf91585afd5f5f83d4260736fd96b57bfe9a571e3
1 #!/bin/sh
2 # Benchmark sort on randomly generated data.
4 # Copyright (C) 2010-2016 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # Written by Glen Lenker.
21 . "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
22 print_ver_ sort
24 very_expensive_
26 perl -e '
27 my $num_lines = 500000;
28 my $length = 100;
30 for (my $i=0; $i < $num_lines; $i++)
32 for (my $j=0; $j < $length; $j++)
34 printf "%c", 32 + rand(94);
36 print "\n";
37 }' > in || framework_failure_
39 # We need to generate a lot of data for sort to show a noticeable
40 # improvement in performance. Sorting it in PERL may take awhile.
42 perl -e '
43 open (FILE, "<in");
44 my @list = <FILE>;
45 print sort(@list);
46 close (FILE);
47 ' > exp || framework_failure_
49 time sort in > out || fail=1
51 compare exp out || fail=1
53 Exit $fail