summaryrefslogtreecommitdiff
path: root/tests/misc/uniq-perf
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-01-17 12:27:55 +0100
committerJim Meyering <meyering@redhat.com>2011-01-17 19:07:58 +0100
commit1f0653066c58707a210f52164e16bb5561640393 (patch)
treeb32a9cf86ed9b5689daf02956379263df2df6ee4 /tests/misc/uniq-perf
parentaa9f02bc30c58ab3ec20d243b3cc7c24918bad37 (diff)
downloadcoreutils-1f0653066c58707a210f52164e16bb5561640393.tar.xz
tests: add a test for today's uniq bug
* tests/misc/uniq-perf: New file. * tests/Makefile.am (TESTS): Add it.
Diffstat (limited to 'tests/misc/uniq-perf')
-rwxr-xr-xtests/misc/uniq-perf25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/misc/uniq-perf b/tests/misc/uniq-perf
new file mode 100755
index 000000000..f000e76e6
--- /dev/null
+++ b/tests/misc/uniq-perf
@@ -0,0 +1,25 @@
+#!/bin/sh
+# before coreutils-8.10, seq 100000|uniq -f 10000000000 would run for days
+
+# Copyright (C) 2011 Free Software Foundation, Inc.
+
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+. "${srcdir=.}/init.sh"; path_prepend_ ../src
+print_ver_ uniq
+
+seq 100 > in || fail=1
+timeout 1 uniq -f 10000000000 in || fail=1
+
+Exit $fail