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-w32-d2117e9c828e02bfc1da38768fc3f6198cab9340.tar.gz busybox-w32-d2117e9c828e02bfc1da38768fc3f6198cab9340.tar.bz2 busybox-w32-d2117e9c828e02bfc1da38768fc3f6198cab9340.zip |
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 | |||
317 | @ $(SHELL) $< > $@ | 317 | @ $(SHELL) $< > $@ |
318 | 318 | ||
319 | test tests: | 319 | test tests: |
320 | cd tests && $(MAKE) all | 320 | # old way of doing it |
321 | #cd tests && $(MAKE) all | ||
322 | # new way of doing it | ||
323 | cd tests && ./tester.sh | ||
321 | 324 | ||
322 | clean: | 325 | clean: |
323 | - cd tests && $(MAKE) clean | 326 | - cd tests && $(MAKE) clean |