move bench.tests to tests/

This commit is contained in:
Simon Michael 2014-01-11 21:53:06 -08:00
parent 77a56584c8
commit bba0d702a1
2 changed files with 6 additions and 6 deletions

View File

@ -442,15 +442,15 @@ fullcabaltest:
# && cabal upload dist/$$p-$(VERSION).tar.gz --check -v3 \
# run simple performance benchmarks without saving results
# Requires some commands defined in bench.tests and some BENCHEXES defined above.
quickbench: samplejournals bench.tests tools/simplebench
tools/simplebench -v -fbench.tests $(BENCHEXES)
# Requires some commands defined in tests/bench.tests and some BENCHEXES defined above.
quickbench: samplejournals tests/bench.tests tools/simplebench
tools/simplebench -v -ftests/bench.tests $(BENCHEXES)
@rm -f benchresults.*
# run simple performance benchmarks and archive results
# Requires some commands defined in bench.tests and some BENCHEXES defined above.
bench: samplejournals bench.tests tools/simplebench
tools/simplebench -v -fbench.tests $(BENCHEXES) | tee profs/$(TIME).bench
# Requires some commands defined in tests/bench.tests and some BENCHEXES defined above.
bench: samplejournals tests/bench.tests tools/simplebench
tools/simplebench -v -ftests/bench.tests $(BENCHEXES) | tee profs/$(TIME).bench
@rm -f benchresults.*
@(cd profs; rm -f latest.bench; ln -s $(TIME).bench latest.bench)