summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2002-12-02 14:47:58 +0000
committerbwarsaw2002-12-02 14:47:58 +0000
commit495122f37aae3275615a4bf2738c2a2571ece326 (patch)
treef82638dc1117ad26b55cb2878c1be8b0bc527c7a
parent593ae5e89571d986c7e9183e53a3fb709fb05a82 (diff)
downloadmailman-495122f37aae3275615a4bf2738c2a2571ece326.tar.gz
mailman-495122f37aae3275615a4bf2738c2a2571ece326.tar.zst
mailman-495122f37aae3275615a4bf2738c2a2571ece326.zip
Add onebounce.py and set the perms for executables.
-rw-r--r--tests/Makefile.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/Makefile.in b/tests/Makefile.in
index 92e8b252c..7809cadc1 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -39,8 +39,8 @@ CFLAGS= $(OPT) $(DEFS)
TESTDIR= $(prefix)/tests
SHELL= /bin/sh
-TEST_MODULES= *.py
-
+TEST_MODULES= test*.py *Base.py
+EXECS= onebounce.py fblast.py
# Modes for directories and executables created by the install
# process. Default to group-writable directories but
@@ -61,6 +61,10 @@ install:
do \
$(INSTALL) -m $(FILEMODE) $$f $(TESTDIR); \
done
+ for f in $(EXECS); \
+ do \
+ $(INSTALL) -m $(EXEMODE) $$f $(TESTDIR); \
+ done
for d in $(SUBDIRS); \
do \
(cd $$d; $(MAKE) install); \