summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2011-04-03 17:30:49 +0200
committerJim Meyering <meyering@redhat.com>2011-04-04 18:21:32 +0200
commit4e23ca47ac2ff81bdc2004be4dad1217b4bec802 (patch)
treea552045a199039ac7913db821050a0cb7e3f6949 /tests
parentaec3e1e107b9104d188fc8494426bd8fb15b1741 (diff)
downloadcoreutils-4e23ca47ac2ff81bdc2004be4dad1217b4bec802.tar.xz
tests: don't ever leave a backgrounded "sleep 10m" process
* tests/misc/help-version: Sleep only ~30s, not 10m. The latter was a problem when somehow that sleep process would hang around and thereby prevent (for up to 10m) a normal unmount of the temporary partition in which I'd run the tests.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/misc/help-version2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/help-version b/tests/misc/help-version
index f8339269a..048220921 100755
--- a/tests/misc/help-version
+++ b/tests/misc/help-version
@@ -226,7 +226,7 @@ id_setup () { args=-u; }
# Use env to avoid invoking built-in sleep of Solaris 11's /bin/sh.
kill_setup () {
- env sleep 10m &
+ env sleep 31.5 &
args=$!
}