summaryrefslogtreecommitdiff
path: root/test-suite
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2002-04-17 17:45:05 +0000
committerMarius Vollmer <mvo@zagadka.de>2002-04-17 17:45:05 +0000
commit3c540af4681598c8695b48fff9310824826ba840 (patch)
tree7ac2594dec40950c631bf4a6e6a41bf5e65bafd6 /test-suite
parent9d2cce766ddd2055021fc55b0866a0a89f33966e (diff)
downloadguile-3c540af4681598c8695b48fff9310824826ba840.tar.gz
(SCM_TESTS_DIRS, dist-hook): New, distribute directories manually.
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/ChangeLog5
-rw-r--r--test-suite/Makefile.am13
2 files changed, 16 insertions, 2 deletions
diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog
index 68cc4bef1..66bf17e02 100644
--- a/test-suite/ChangeLog
+++ b/test-suite/ChangeLog
@@ -1,3 +1,8 @@
+2002-04-16 Marius Vollmer <mvo@zagadka.ping.de>
+
+ * Makefile.am (SCM_TESTS_DIRS, dist-hook): New, distribute
+ directories manually.
+
2002-02-09 Thien-Thi Nguyen <ttn@giblet.glug.org>
* guile-test (main): Handle `--flag-unresolved'. No longer set
diff --git a/test-suite/Makefile.am b/test-suite/Makefile.am
index 09e8d8a3b..727601ecd 100644
--- a/test-suite/Makefile.am
+++ b/test-suite/Makefile.am
@@ -1,7 +1,5 @@
SCM_TESTS = tests/alist.test \
- tests/asmobs \
tests/bit-operations.test \
- tests/c-api \
tests/c-api.test \
tests/chars.test \
tests/common-list.test \
@@ -40,4 +38,15 @@ SCM_TESTS = tests/alist.test \
tests/version.test \
tests/weaks.test
+SCM_TESTS_DIRS = tests/asmobs \
+ tests/c-api
+
EXTRA_DIST = guile-test lib.scm $(SCM_TESTS)
+
+## Automake should be able to handle the distribution of tests/asmobs
+## etc without any help, but not all version can handle 'deep'
+## directories. So we do it on our own.
+dist-hook:
+ for d in $(SCM_TESTS_DIRS); do \
+ cp -pR $(srcdir)/$$d $(distdir)/$$d; \
+ done