go.dedis.ch/onet/v4@v4.0.0-pre1/Makefile (about) 1 all: test 2 3 Coding/bin/Makefile.base: 4 git clone https://github.com/dedis/Coding 5 include Coding/bin/Makefile.base 6 7 # You can use `test_playground` to run any test or part of cothority 8 # for more than once in Travis. Change `make test` in .travis.yml 9 # to `make test_playground`. 10 test_playground: 11 for a in $$( seq 100 ); do \ 12 if DEBUG_TIME=true go test -v -race -short > log.txt 2>&1; then \ 13 echo Successfully ran \#$$a at $$(date); \ 14 else \ 15 echo Failed at $$(date); \ 16 cat log.txt; \ 17 exit 1; \ 18 fi; \ 19 done;