mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-02-18 05:12:15 +02:00
* tests/dircolors/simple: Move this file to... * tests/misc/dircolors: ...here. Don't rely on $PROG in env. * tests/misc/Makefile.am (TESTS): Add dircolors. * tests/Makefile.am (SUBDIRS): Remove dircolors. * tests/dircolors: Remove the directory. * configure.ac (AC_CONFIG_FILES): Remove tests/dircolors/Makefile
102 lines
2.4 KiB
Makefile
102 lines
2.4 KiB
Makefile
# Make miscellaneous coreutils tests. -*-Makefile-*-
|
|
|
|
# Copyright (C) 2001-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/>.
|
|
|
|
EXTRA_DIST = $(TESTS)
|
|
|
|
built_programs = \
|
|
(cd $(top_builddir)/src && MAKEFLAGS= $(MAKE) -s built_programs.list)
|
|
|
|
TESTS_ENVIRONMENT = \
|
|
built_programs="`$(built_programs)`" \
|
|
top_srcdir=$(top_srcdir) \
|
|
abs_top_builddir=$(abs_top_builddir) \
|
|
abs_top_srcdir=$(abs_top_srcdir) \
|
|
PACKAGE_VERSION=$(PACKAGE_VERSION) \
|
|
PERL="$(PERL)" \
|
|
BUILD_SRC_DIR="`pwd`/../../src" \
|
|
CU_TEST_NAME=`basename $(abs_srcdir)`,$$tst \
|
|
PATH="$(VG_PATH_PREFIX)`pwd`/../../src$(PATH_SEPARATOR)$$PATH" \
|
|
CONFIG_HEADER=$(CONFIG_HEADER) \
|
|
REPLACE_GETCWD=$(REPLACE_GETCWD) \
|
|
host_os=$(host_os)
|
|
|
|
# Do not choose a name that is a shell keyword like 'if', or a
|
|
# commonly-used utility like 'cat' or 'test', as the name of a test.
|
|
# Otherwise, VPATH builds will fail on hosts like Solaris, since they
|
|
# will expand 'if test ...' to 'if .../test ...', and the '.../test'
|
|
# will execute the test script rather than the standard utility.
|
|
|
|
TESTS = \
|
|
head-elide-tail \
|
|
ls-time \
|
|
date \
|
|
xstrtol \
|
|
od \
|
|
arch \
|
|
pr \
|
|
df-P \
|
|
pwd-unreadable-parent \
|
|
chcon \
|
|
chcon-fail \
|
|
selinux \
|
|
cut \
|
|
wc-files0-from \
|
|
wc-files0 \
|
|
cat-proc \
|
|
base64 \
|
|
basename \
|
|
close-stdout \
|
|
csplit \
|
|
date-sec \
|
|
dircolors \
|
|
df \
|
|
dirname \
|
|
expand \
|
|
false-status \
|
|
fold \
|
|
groups-version \
|
|
head-c \
|
|
head-pos \
|
|
mknod \
|
|
nice \
|
|
nl \
|
|
nohup \
|
|
paste-no-nl \
|
|
pathchk1 \
|
|
printf \
|
|
printf-hex \
|
|
pwd-long \
|
|
runcon-no-reorder \
|
|
sha224sum \
|
|
sha256sum \
|
|
sha384sum \
|
|
sha512sum \
|
|
shuf \
|
|
sort-compress \
|
|
sort-merge \
|
|
sort-rand \
|
|
split-a \
|
|
split-fail \
|
|
split-l \
|
|
stat-fmt \
|
|
stat-printf \
|
|
tac-continue \
|
|
test-diag \
|
|
tty-eof
|
|
|
|
include $(top_srcdir)/tests/check.mk
|