diff options
author | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-03-04 21:19:32 +0000 |
---|---|---|
committer | erik <erik@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2000-03-04 21:19:32 +0000 |
commit | f042f3c095e99887a076427cc04de54f90fe2c29 (patch) | |
tree | 7c49f1fc1547a2f9cee812472f422a5c1a5c448b /tests/Makefile | |
parent | 6b65252692f961f249492e7768d7b2826600d956 (diff) | |
download | busybox-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/Makefile | 23 |
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 @@ | |||
1 | all 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 | ||
3 | clean: cp_clean mv_clean ln_clean | 5 | all:: message_header |
4 | 6 | ||
5 | message_header: | 7 | message_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 | ||
11 | include cp_tests.mk | 12 | clean:: |
12 | include mv_tests.mk | 13 | |
13 | include ln_tests.mk | 14 | distclean: clean |
15 | |||
16 | .PHONY: all clean distclean message_header | ||
17 | |||
18 | include $(wildcard *_tests.mk) | ||
14 | 19 | ||
15 | BBL := $(shell pushd .. >/dev/null && \ | 20 | BBL := $(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 | ||