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

« back to all changes in this revision

Viewing changes to tests/misc/timeout-parameters

  • 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-2011 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=.}/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
 
# timeout overflow
39
 
timeout $UINT_OFLOW sleep 0
40
 
test $? = 0 || fail=1
41
 
 
42
 
# timeout overflow
43
 
timeout $(expr $UINT_MAX / 86400 + 1)d sleep 0
44
 
test $? = 0 || fail=1
45
 
 
46
 
# timeout overflow
47
 
timeout 999999999999999999999999999999999999999999999999999999999999d sleep 0
48
 
test $? = 0 || fail=1
49
 
 
50
 
# floating point notation
51
 
timeout 2.34 sleep 0
52
 
test $? = 0 || fail=1
53
 
 
54
 
# floating point notation
55
 
timeout 2.34e+5d sleep 0
56
 
test $? = 0 || fail=1
57
 
 
58
 
# nanoseconds potentially supported
59
 
timeout .999999999 sleep 0 || fail=1
60
 
 
61
 
# invalid signal spec
62
 
timeout --signal=invalid 1 sleep 0
63
 
test $? = 125 || fail=1
64
 
 
65
 
# invalid command
66
 
timeout 10 .
67
 
test $? = 126 || fail=1
68
 
 
69
 
# no such command
70
 
timeout 10 no_such
71
 
test $? = 127 || fail=1
72
 
 
73
 
Exit $fail