diff options
author | Jim Meyering <jim@meyering.net> | 2007-09-10 08:00:39 +0200 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-09-15 08:40:39 +0200 |
commit | be23f60132655a40bc65fc8437509ec02663d1be (patch) | |
tree | d04f52a324fb1cd60f45893ec615b8c9fe2fcd53 /tests/mkdir/special-1 | |
parent | 570fd054c62fb5982e92f2d03c6397b4c3e2a207 (diff) | |
download | coreutils-be23f60132655a40bc65fc8437509ec02663d1be.tar.xz |
Convert tests/mkdir/ to use test-lib.sh.
Diffstat (limited to 'tests/mkdir/special-1')
-rwxr-xr-x | tests/mkdir/special-1 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/mkdir/special-1 b/tests/mkdir/special-1 index 842899f15..f65d2ae01 100755 --- a/tests/mkdir/special-1 +++ b/tests/mkdir/special-1 @@ -1,7 +1,7 @@ #!/bin/sh # verify that mkdir honors special bits in MODE -# Copyright (C) 2000, 2006 Free Software Foundation, Inc. +# Copyright (C) 2000, 2006, 2007 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 @@ -21,13 +21,12 @@ if test "$VERBOSE" = yes; then mkdir --version fi -tmp=mkdir-sp-$$ -trap 'status=$?; rm -rf $tmp && exit $status' 0 -trap 'exit $?' 1 2 13 15 +. $srcdir/../test-lib.sh set_mode_string=u=rwx,g=rx,o=w,-s,+t output_mode_string=drwxr-x-wT +tmp=t mkdir -m$set_mode_string $tmp || fail=1 test -d $tmp || fail=1 |