bdd1cc575a244efebd1e8b79c28e160aec7296f0
[platform/upstream/coreutils.git] / tests / misc / sort-benchmark-random.sh
1 #!/bin/sh
2 # Benchmark sort on randomly generated data.
3
4 # Copyright (C) 2010-2012 Free Software Foundation, Inc.
5
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.
10
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.
15
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/>.
18
19 # Written by Glen Lenker.
20
21 . "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
22 print_ver_ sort
23
24 very_expensive_
25
26 perl -e '
27 my $num_lines = 500000;
28 my $length = 100;
29
30 for (my $i=0; $i < $num_lines; $i++)
31 {
32     for (my $j=0; $j < $length; $j++)
33     {
34       printf "%c", 32 + rand(94);
35     }
36     print "\n";
37 }' > in || framework_failure_
38
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.
41
42 perl -e '
43 open (FILE, "<in");
44 my @list = <FILE>;
45 print sort(@list);
46 close (FILE);
47 ' > exp || framework_failure_
48
49 time sort in > out || fail=1
50
51 compare exp out || fail=1
52
53 Exit $fail