+1999-04-05 Thomas Tanner <tanner@gmx.de>
+
+ * demo/run.test: removed the unnecessary test
+ * demo/Makefile.am: ditto
+
1999-04-04 Alexandre Oliva <oliva@dcc.unicamp.br>
* ltconfig.in (sunos4*, GNU ld): -Bstatic is not enough for
AUTOMAKE_OPTIONS = no-dependencies foreign
-EXTRA_DIST = $(TESTS) acinclude.m4
+EXTRA_DIST = acinclude.m4
# Build a libtool library, libhello.la for installation in libdir.
lib_LTLIBRARIES = libhello.la
# to its private directory.
objdir = `sed -n -e 's/^objdir=\(.*\)$$/\1/p' ../libtool`
-TESTS = run.test
-
# The following rules are only for the libtool demo and tests.
# Regenerate our acinclude.m4 only if it doesn't exist.
$(srcdir)/acinclude.m4:
+++ /dev/null
-#! /bin/sh
-# run.test - Check that hell is viable.
-
-if test -z "$srcdir"; then
- srcdir=.
- test "${VERBOSE+set}" != "set" && VERBOSE=yes
-fi
-
-# See how redirections should work.
-if test -z "$VERBOSE"; then
- exec > /dev/null 2>&1
-fi
-
-echo "=== Running test $0"
-
-# Attempt to execute the program we built.
-if ./hell | grep 'GNU Hell' > /dev/null; then
- exit 0
-else
- exit 1
-fi