blob: ffebb6b2a3e820b7f58232fe7978ccddbfb7a46e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
# This was approximately quadratic up to grep-2.6.3
. "${srcdir=.}/init.sh"; path_prepend_ ../src
require_en_utf8_locale_
require_timeout_
fail=0
# Create a 13000-line input
$AWK 'BEGIN {for (i=0; i<13000; i++) print "aba"}' /dev/null > in || fail=1
# Use 10 times the duration of running grep in the C locale as the timeout
# when running in en_US.UTF-8. Round up to whole seconds, since timeout
# can't deal with fractional seconds.
max_seconds=$(LC_ALL=C perl -le 'use Time::HiRes qw(time); my $s = time();
system q,grep -E '\''^([a-z]).\1$'\'' in > /dev/null,;
my $elapsed = time() - $s; print int (1 + 10 * $elapsed)') \
|| { max_seconds=5;
warn_ "$ME_: warning: no perl? using default of 5s timeout"; }
for LOC in en_US.UTF-8; do
out=out-$LOC
LC_ALL=$LOC timeout ${max_seconds}s grep -E '^([a-z]).\1$' in > $out 2>&1
test $? = 0 || fail=1
compare $out in || fail=1
done
Exit $fail
|