aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorerik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-03-04 21:19:32 +0000
committererik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-03-04 21:19:32 +0000
commitf042f3c095e99887a076427cc04de54f90fe2c29 (patch)
tree7c49f1fc1547a2f9cee812472f422a5c1a5c448b /tests/Makefile
parent6b65252692f961f249492e7768d7b2826600d956 (diff)
downloadbusybox-w32-f042f3c095e99887a076427cc04de54f90fe2c29.tar.gz
busybox-w32-f042f3c095e99887a076427cc04de54f90fe2c29.tar.bz2
busybox-w32-f042f3c095e99887a076427cc04de54f90fe2c29.zip
A few updates (including the cp fix the Craig has been looking for)
-Erik git-svn-id: svn://busybox.net/trunk/busybox@386 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile23
1 files changed, 13 insertions, 10 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 015634460..c4fb0e911 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -1,16 +1,21 @@
1all test_all: message_header cp_tests mv_tests ln_tests 1# busybox/tests/Makefile - Run through all defined tests.
2# ------------------------
3# Copyright (C) 2000 Karl M. Hegbloom <karlheg@debian.org> GPL
2 4
3clean: cp_clean mv_clean ln_clean 5all:: message_header
4 6
5message_header: 7message_header:
6 @echo 8 @echo
7 @echo If tests faile due to differences in timestamps in commands that are not set 9 @echo BusyBox Test Suite.
8 @echo to preserve timestamps, just run the tests again.
9 @echo 10 @echo
10 11
11include cp_tests.mk 12clean::
12include mv_tests.mk 13
13include ln_tests.mk 14distclean: clean
15
16.PHONY: all clean distclean message_header
17
18include $(wildcard *_tests.mk)
14 19
15BBL := $(shell pushd .. >/dev/null && \ 20BBL := $(shell pushd .. >/dev/null && \
16 ${MAKE} busybox.links >/dev/null && \ 21 ${MAKE} busybox.links >/dev/null && \
@@ -21,8 +26,6 @@ BBL := $(shell pushd .. >/dev/null && \
21../busybox: 26../busybox:
22 cd .. && ${MAKE} busybox 27 cd .. && ${MAKE} busybox
23 28
24$(BBL): ../busybox 29${BBL}: ../busybox
25 rm -f $@ 30 rm -f $@
26 ln ../busybox $@ 31 ln ../busybox $@
27
28.PHONY: all test_all message_header