diff options
author | Mark Whitley <markw@lineo.com> | 2001-03-10 00:51:29 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2001-03-10 00:51:29 +0000 |
commit | d2117e9c828e02bfc1da38768fc3f6198cab9340 (patch) | |
tree | 37469d39aa87f07a02cbc72ae4b166ed34826fc0 /Makefile | |
parent | 09f4af5afd12569fd813ae4701f6936fd5712553 (diff) | |
download | busybox-d2117e9c828e02bfc1da38768fc3f6198cab9340.tar.gz |
Created new regression testing framework with a number of testcases (many more
can be added). Also changed 'test' target in makefile to run the new
tester.sh. (Hopefully, we should be able to remove all the tests/*.mk files
soon.)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -317,7 +317,10 @@ loop.h: mk_loop_h.sh @ $(SHELL) $< > $@ test tests: - cd tests && $(MAKE) all + # old way of doing it + #cd tests && $(MAKE) all + # new way of doing it + cd tests && ./tester.sh clean: - cd tests && $(MAKE) clean |