mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-03-03 03:25:26 +02:00
* tests/Makefile.am.in (TESTS_ENVIRONMENT): Remove definition.
* tests/chgrp/Makefile.am: Likewise.
* tests/chmod/Makefile.am: Likewise.
* tests/chown/Makefile.am: Likewise.
* tests/cp/Makefile.am: Likewise.
* tests/dd/Makefile.am: Likewise.
* tests/du/Makefile.am: Likewise.
* tests/install/Makefile.am: Likewise.
* tests/ln/Makefile.am: Likewise.
* tests/ls/Makefile.am: Likewise.
* tests/misc/Makefile.am: Likewise.
* tests/mkdir/Makefile.am: Likewise.
* tests/mv/Makefile.am: Likewise.
* tests/readlink/Makefile.am: Likewise.
* tests/rm/Makefile.am: Likewise.
* tests/rmdir/Makefile.am: Likewise.
* tests/tail-2/Makefile.am: Likewise.
* tests/touch/Makefile.am: Likewise.
* tests/check.mk (TESTS_ENVIRONMENT) [EXEEXT, EGREP, MAKE, PERL]:
[CONFIG_HEADER, build_programs, host_os, host_triplet, PATH]:
[REPLACE_GETCWD, CU_TEST_NAME]: Add definitions here.
* tests/misc/pwd-long: Use $abs_top_builddir/src, not $BUILD_SRC_DIR.
* tests/dd/skip-seek: Don't use $ENV{PROG}.
* tests/rm/empty-name: Likewise.
* tests/rm/unreadable: Likewise.
* tests/mv/i-1: Likewise.
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# Make coreutils tests for "rm". -*-Makefile-*-
|
|
|
|
# Copyright (C) 1997, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 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
|
|
# 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/>.
|
|
|
|
TESTS = \
|
|
deep-1 \
|
|
hash \
|
|
dangling-symlink \
|
|
v-slash \
|
|
i-never \
|
|
fail-eacces \
|
|
one-file-system \
|
|
ignorable \
|
|
readdir-bug \
|
|
empty-inacc \
|
|
dir-nonrecur \
|
|
dot-rel \
|
|
inaccessible \
|
|
unread3 \
|
|
no-give-up \
|
|
dir-no-w \
|
|
empty-name \
|
|
fail-2eperm \
|
|
cycle i-no-r fail-eperm \
|
|
rm1 rm2 rm3 rm4 rm5 \
|
|
unread2 r-1 r-2 r-3 r-4 i-1 ir-1 f-1 sunos-1 \
|
|
unreadable \
|
|
interactive-always interactive-once \
|
|
isatty
|
|
|
|
EXTRA_DIST = $(TESTS)
|
|
|
|
include $(top_srcdir)/tests/check.mk
|