diff options
Diffstat (limited to 'tests/touch')
-rwxr-xr-x | tests/touch/dangling-symlink | 4 | ||||
-rwxr-xr-x | tests/touch/dir-1 | 2 | ||||
-rwxr-xr-x | tests/touch/empty-file | 4 | ||||
-rwxr-xr-x | tests/touch/fifo | 4 | ||||
-rwxr-xr-x | tests/touch/no-rights | 4 |
5 files changed, 9 insertions, 9 deletions
diff --git a/tests/touch/dangling-symlink b/tests/touch/dangling-symlink index 3c5cbdcec..c69f9d9bc 100755 --- a/tests/touch/dangling-symlink +++ b/tests/touch/dangling-symlink @@ -2,7 +2,7 @@ # Make sure touch can create a file through a dangling symlink. # This was broken in the 4.0[e-i] test releases. -# Copyright (C) 1999, 2000, 2007 Free Software Foundation, Inc. +# Copyright (C) 1999, 2000, 2007-2008 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 @@ -51,4 +51,4 @@ when operating on dangling symlinks. esac fi -exit $fail +(exit $fail); exit $fail diff --git a/tests/touch/dir-1 b/tests/touch/dir-1 index 383e00df4..5b7a86c19 100755 --- a/tests/touch/dir-1 +++ b/tests/touch/dir-1 @@ -11,4 +11,4 @@ fi fail=0 touch . || fail=1 -exit $fail +(exit $fail); exit $fail diff --git a/tests/touch/empty-file b/tests/touch/empty-file index 296faae27..5368629b4 100755 --- a/tests/touch/empty-file +++ b/tests/touch/empty-file @@ -1,7 +1,7 @@ #!/bin/sh # Make sure touch can set the mtime on an empty file. -# Copyright (C) 1998, 1999, 2000, 2005-2007 Free Software Foundation, Inc. +# Copyright (C) 1998, 1999, 2000, 2005-2008 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 @@ -82,4 +82,4 @@ if test $fail != 0; then EOF fi -exit $fail +(exit $fail); exit $fail diff --git a/tests/touch/fifo b/tests/touch/fifo index 400c922c8..00b46f5c5 100755 --- a/tests/touch/fifo +++ b/tests/touch/fifo @@ -1,7 +1,7 @@ #!/bin/sh # Make sure touch works on fifos without hanging. -# Copyright (C) 2000, 2007 Free Software Foundation, Inc. +# Copyright (C) 2000, 2007-2008 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 @@ -35,4 +35,4 @@ fail=0 touch fifo || fail=1 -exit $fail +(exit $fail); exit $fail diff --git a/tests/touch/no-rights b/tests/touch/no-rights index 7fe9d29c6..e90fcac50 100755 --- a/tests/touch/no-rights +++ b/tests/touch/no-rights @@ -2,7 +2,7 @@ # Make sure touch can update the times on a file that is neither # readable nor writable. -# Copyright (C) 1999, 2000, 2002, 2006-2007 Free Software Foundation, Inc. +# Copyright (C) 1999, 2000, 2002, 2006-2008 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 @@ -42,4 +42,4 @@ test "$*" = "x t1 t2" || fail=1 # Also test the combination of --no-create and -a. touch -a --no-create t1 || fail=1 -exit $fail +(exit $fail); exit $fail |