Overview
Comment: | Improved deps for unit tests |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
6086fb91b5fd979c33e11b2d98dd3ea7 |
User & Date: | matt on 2015-06-13 08:53:25 |
Other Links: | branch diff | manifest | tags |
Context
2015-06-13
| ||
10:42 | More unit test improvements check-in: 408518a4b2 user: matt tags: v1.60 | |
08:53 | Improved deps for unit tests check-in: 6086fb91b5 user: matt tags: v1.60 | |
08:50 | Improved unit tests system check-in: e3bc8b30e5 user: matt tags: v1.60 | |
Changes
Modified tests/Makefile from [62a6b34dfb] to [be559b760d].
︙ | ︙ | |||
24 25 26 27 28 29 30 | all : build unit test1 test2 test3 test4 test5 test6 test7 test8 test9 unit : basicserver.log runs.log ## basicserver.log : unittests/basicserver.scm ## script -c "./rununittest.sh basicserver $(DEBUG)" basicserver.log | | | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | all : build unit test1 test2 test3 test4 test5 test6 test7 test8 test9 unit : basicserver.log runs.log ## basicserver.log : unittests/basicserver.scm ## script -c "./rununittest.sh basicserver $(DEBUG)" basicserver.log %.log : unittests/%.scm ../*.scm script -c "./rununittest.sh $* $(DEBUG)" $*.log if logpro unit.logpro $*.html < $*.log > /dev/null;then echo ALLPASS;else echo ALLFAIL;mv $*.log $*.log.FAIL;fi server : cd fullrun;$(MEGATEST) -server - -debug $(DEBUG) -run-id $(RUNID) stopserver : |
︙ | ︙ |