summaryrefslogtreecommitdiff
path: root/tests/umask-check
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-04-20 23:29:19 +0200
committerJim Meyering <meyering@redhat.com>2008-04-21 00:02:00 +0200
commit90bc2fe272debe8540a59b9a1e565c43e87e4635 (patch)
tree83a9f9df5273d37130d64cd707e87d75b902284c /tests/umask-check
parentc51900a6bd655e7dd596fa6888a0e521e6b5a6bd (diff)
downloadcoreutils-90bc2fe272debe8540a59b9a1e565c43e87e4635.tar.xz
tests: convert umask-check to a function
* tests/test-lib.sh (working_umask_or_skip_): New function, from... * tests/umask-check: ...here. Remove file. * tests/Makefile.am (EXTRA_DIST): Remove umask-check. * tests/mkdir/perm: Use the function rather than sourcing the file. * tests/cp/cp-parents: Likewise. * tests/cp/parent-perm: Likewise. Bruno Haible reported that parent-perm was failing to run umask-check.
Diffstat (limited to 'tests/umask-check')
-rw-r--r--tests/umask-check31
1 files changed, 0 insertions, 31 deletions
diff --git a/tests/umask-check b/tests/umask-check
deleted file mode 100644
index 238d6587c..000000000
--- a/tests/umask-check
+++ /dev/null
@@ -1,31 +0,0 @@
-# -*- sh -*-
-# Disable the current test if umask doesn't work as usual.
-
-# Copyright (C) 2005, 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
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
-# This test should be run in the temporary directory that ends
-# up being removed via the trap commands.
-
-umask 022
-touch file1 file2
-chmod 644 file2
-perms=`ls -l file1 file2 | sed 's/ .*//' | uniq`
-rm -f file1 file2
-
-case $perms in
-*'
-'*) skip_test_ 'your build directory has unusual umask semantics'
-esac