Move the two tests in tests/fmt to tests/misc/fmt.
authorJim Meyering <jim@meyering.net>
Sat, 8 Sep 2007 06:57:42 +0000 (08:57 +0200)
committerJim Meyering <jim@meyering.net>
Sat, 15 Sep 2007 06:40:38 +0000 (08:40 +0200)
* tests/fmt/basic: Move this file to ...
* tests/misc/fmt: ...here.  Don't rely on $PROG in env.
* tests/fmt/long-line: Move this file to ...
* tests/misc/fmt-long-line: ...here.
* tests/misc/Makefile.am (TESTS): Add fmt.
* tests/Makefile.am (SUBDIRS): Remove fmt.
* tests/fmt: Remove the directory.
* configure.ac (AC_CONFIG_FILES): Remove tests/fmt/Makefile

configure.ac
tests/Makefile.am
tests/fmt/Makefile.am [deleted file]
tests/misc/Makefile.am
tests/misc/fmt [moved from tests/fmt/basic with 97% similarity]
tests/misc/fmt-long-line [moved from tests/fmt/long-line with 100% similarity]

index ed6953f..6012b56 100644 (file)
@@ -343,7 +343,6 @@ AC_CONFIG_FILES(
   tests/cut/Makefile
   tests/dd/Makefile
   tests/du/Makefile
-  tests/fmt/Makefile
   tests/head/Makefile
   tests/install/Makefile
   tests/join/Makefile
index 53985da..be36fb8 100644 (file)
@@ -44,7 +44,7 @@ EXTRA_DIST =          \
 ## N O T E :: Please do not add new tests/ directories.
 ## There are too many already.  Put new tests in misc/.
 SUBDIRS = \
-  chgrp chmod chown cp cut dd du fmt head \
+  chgrp chmod chown cp cut dd du head \
   install join ln ls ls-2 md5sum misc mkdir mv od pr readlink rm rmdir \
   seq sha1sum shred sort stty sum tac tail tail-2 tee test touch tr \
   tsort unexpand uniq wc
diff --git a/tests/fmt/Makefile.am b/tests/fmt/Makefile.am
deleted file mode 100644 (file)
index 3ed6f72..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-## Process this file with automake to produce Makefile.in -*-Makefile-*-.
-
-EXTRA_DIST = $(TESTS)
-
-TESTS_ENVIRONMENT = \
-  top_srcdir=$(top_srcdir) \
-  srcdir=$(srcdir) \
-  PERL="$(PERL)" \
-  CU_TEST_NAME=`basename $(abs_srcdir)`,$$tst \
-  PATH="$(VG_PATH_PREFIX)`pwd`/../../src$(PATH_SEPARATOR)$$PATH" \
-  PROG=fmt
-
-TESTS = basic long-line
index b237858..faf9e49 100644 (file)
@@ -69,6 +69,8 @@ TESTS = \
   expr \
   factor \
   false-status \
+  fmt \
+  fmt-long-line \
   fold \
   groups-version \
   head-c \
similarity index 97%
rename from tests/fmt/basic
rename to tests/misc/fmt
index dae2f97..043bf72 100755 (executable)
@@ -79,8 +79,7 @@ my @Tests =
 
 my $save_temps = $ENV{DEBUG};
 my $verbose = $ENV{VERBOSE};
-
-my $prog = $ENV{PROG} || die "$0: \$PROG not specified in environment\n";
+my $prog = 'fmt';
 my $fail = run_tests ($program_name, $prog, \@Tests, $save_temps, $verbose);
 exit $fail;
 EOF
similarity index 100%
rename from tests/fmt/long-line
rename to tests/misc/fmt-long-line