2 # Benchmark sort on randomly generated data.
4 # Copyright (C) 2010-2024 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 <https://www.gnu.org/licenses/>.
19 # Written by Glen Lenker.
21 .
"${srcdir=.}/tests/init.sh"; path_prepend_ .
/src
28 my $num_lines = 500000;
31 for (my $i=0; $i < $num_lines; $i++)
33 for (my $j=0; $j < $length; $j++)
35 printf "%c", 32 + rand(94);
38 }' > in || framework_failure_
40 # We need to generate a lot of data for sort to show a noticeable
41 # improvement in performance. Sorting it in PERL may take awhile.
48 ' > exp || framework_failure_
50 time sort in > out || fail
=1
52 compare exp out || fail
=1