~ubuntu-branches/ubuntu/utopic/coreutils/utopic-proposed

« back to all changes in this revision

Viewing changes to tests/misc/timeout-parameters.sh

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-11-28 03:03:42 UTC
  • mfrom: (8.3.4 sid)
  • Revision ID: package-import@ubuntu.com-20121128030342-21zanj8354gas5gr
Tags: 8.20-3ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Make 'uname -i -p' return the real processor/hardware, instead of
    unknown.
  - Build-depend on gettext:any instead of on gettext, so that apt-get can
    properly resolve build-dependencies on the tool when cross-building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
# Validate timeout parameter combinations
 
3
 
 
4
# Copyright (C) 2008-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
. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src
 
20
print_ver_ timeout
 
21
getlimits_
 
22
 
 
23
 
 
24
# internal errors are 125, distinct from execution failure
 
25
 
 
26
# invalid timeout
 
27
timeout invalid sleep 0
 
28
test $? = 125 || fail=1
 
29
 
 
30
# invalid kill delay
 
31
timeout --kill-after=invalid 1 sleep 0
 
32
test $? = 125 || fail=1
 
33
 
 
34
# invalid timeout suffix
 
35
timeout 42D sleep 0
 
36
test $? = 125 || fail=1
 
37
 
 
38
# It was seen on 32 bit Linux/HPPA that a kernel time_t overflowed,
 
39
# thus causing the timer to fire immediately.
 
40
# So verify that doesn't happen before checking large timeouts
 
41
KERNEL_OVERFLOW_LIMIT=$(expr $TIME_T_MAX - $(date +%s) + 100)
 
42
timeout $KERNEL_OVERFLOW_LIMIT sleep 0
 
43
if test $? != 124; then
 
44
  # timeout overflow
 
45
  timeout $UINT_OFLOW sleep 0
 
46
  test $? = 0 || fail=1
 
47
 
 
48
  # timeout overflow
 
49
  timeout $(expr $UINT_MAX / 86400 + 1)d sleep 0
 
50
  test $? = 0 || fail=1
 
51
 
 
52
  # timeout overflow
 
53
  timeout 999999999999999999999999999999999999999999999999999999999999d sleep 0
 
54
  test $? = 0 || fail=1
 
55
 
 
56
  # floating point notation
 
57
  timeout 2.34e+5d sleep 0
 
58
  test $? = 0 || fail=1
 
59
fi
 
60
 
 
61
# floating point notation
 
62
timeout 2.34 sleep 0
 
63
test $? = 0 || fail=1
 
64
 
 
65
# nanoseconds potentially supported
 
66
timeout .999999999 sleep 0 || fail=1
 
67
 
 
68
# invalid signal spec
 
69
timeout --signal=invalid 1 sleep 0
 
70
test $? = 125 || fail=1
 
71
 
 
72
# invalid command
 
73
timeout 10 .
 
74
test $? = 126 || fail=1
 
75
 
 
76
# no such command
 
77
timeout 10 no_such
 
78
test $? = 127 || fail=1
 
79
 
 
80
Exit $fail