makefile: rename benchtest to benchmark, it's not a pass/fail test
This commit is contained in:
parent
7aaa2c5ad0
commit
08d0663704
4
HOME
4
HOME
@ -43,7 +43,7 @@ Documentation
|
|||||||
|
|
||||||
`User's Guide`_ | News_ | see also `ledger's home page`_ and manual_
|
`User's Guide`_ | News_ | see also `ledger's home page`_ and manual_
|
||||||
|
|
||||||
`Developer API docs`_ | `Developer Notes`_ | `Contributor List`_ | latest benchtest_, profile_, heap_, `test coverage`_ reports
|
`Developer API docs`_ | `Developer Notes`_ | `Contributor List`_ | latest benchmark_, profile_, heap_, `test coverage`_ reports
|
||||||
|
|
||||||
Code repository
|
Code repository
|
||||||
---------------
|
---------------
|
||||||
@ -75,7 +75,7 @@ Related projects
|
|||||||
.. _Contributor List: CONTRIBUTORS.html
|
.. _Contributor List: CONTRIBUTORS.html
|
||||||
.. _Developer API docs: http://hledger.org/api-doc
|
.. _Developer API docs: http://hledger.org/api-doc
|
||||||
.. _Developer Notes: http://joyful.com/darcsweb/darcsweb.cgi?r=hledger;a=plainblob;f=/NOTES
|
.. _Developer Notes: http://joyful.com/darcsweb/darcsweb.cgi?r=hledger;a=plainblob;f=/NOTES
|
||||||
.. _benchtest: http://joyful.com/repos/hledger/profs/latest.bench
|
.. _benchmark: http://joyful.com/repos/hledger/profs/latest.bench
|
||||||
.. _profile: http://joyful.com/repos/hledger/profs/latest.prof
|
.. _profile: http://joyful.com/repos/hledger/profs/latest.prof
|
||||||
.. _heap: http://joyful.com/repos/hledger/profs/latest.ps
|
.. _heap: http://joyful.com/repos/hledger/profs/latest.ps
|
||||||
.. _test coverage: http://joyful.com/repos/hledger/profs/coverage/hpc_index_fun.html
|
.. _test coverage: http://joyful.com/repos/hledger/profs/coverage/hpc_index_fun.html
|
||||||
|
|||||||
10
Makefile
10
Makefile
@ -13,7 +13,7 @@ PROFCMD=-f 1000x1000x10.ledger balance
|
|||||||
# command to run during "make coverage"
|
# command to run during "make coverage"
|
||||||
COVCMD=test
|
COVCMD=test
|
||||||
|
|
||||||
# executables to run during "make benchtest" (prepend ./ if not in $PATH)
|
# executables to run during "make benchmark" (prepend ./ if not in $PATH)
|
||||||
BENCHEXES=hledger-0.5 hledger-0.6 ledger
|
BENCHEXES=hledger-0.5 hledger-0.6 ledger
|
||||||
|
|
||||||
# document viewing commands
|
# document viewing commands
|
||||||
@ -106,7 +106,7 @@ haddocktest:
|
|||||||
|
|
||||||
# run performance tests and save results in profs/.
|
# run performance tests and save results in profs/.
|
||||||
# Requires some tests defined in bench.tests and some executables defined above.
|
# Requires some tests defined in bench.tests and some executables defined above.
|
||||||
benchtest: sampleledgers bench.tests tools/bench
|
benchmark: sampleledgers bench.tests tools/bench
|
||||||
tools/bench -fbench.tests $(BENCHEXES) | tee profs/$(TIME).bench
|
tools/bench -fbench.tests $(BENCHEXES) | tee profs/$(TIME).bench
|
||||||
@rm -f benchresults.*
|
@rm -f benchresults.*
|
||||||
@(cd profs; rm -f latest.bench; ln -s $(TIME).bench latest.bench)
|
@(cd profs; rm -f latest.bench; ln -s $(TIME).bench latest.bench)
|
||||||
@ -340,12 +340,12 @@ push: pushprofs pushbinary
|
|||||||
pull: pullprofs
|
pull: pullprofs
|
||||||
darcs pull -a joyful.com:/repos/hledger
|
darcs pull -a joyful.com:/repos/hledger
|
||||||
|
|
||||||
# push any new profiles and benchtest results to the public site
|
# push any new profiles and benchmark results to the public site
|
||||||
# beware, results will vary depending on which machine generated them
|
# beware, results will vary depending on which machine generated them
|
||||||
pushprofs:
|
pushprofs:
|
||||||
rsync -azP profs/ joyful.com:/repos/hledger/profs/
|
rsync -azP profs/ joyful.com:/repos/hledger/profs/
|
||||||
|
|
||||||
# fetch any new profiles and benchtest results from the public site
|
# fetch any new profiles and benchmark results from the public site
|
||||||
pullprofs:
|
pullprofs:
|
||||||
rsync -azP joyful.com:/repos/hledger/profs/ profs/
|
rsync -azP joyful.com:/repos/hledger/profs/ profs/
|
||||||
|
|
||||||
@ -356,7 +356,7 @@ pushbinary:
|
|||||||
rsync -aP $(BINARYFILENAME).gz joyful.com:/repos/hledger/website/binaries/
|
rsync -aP $(BINARYFILENAME).gz joyful.com:/repos/hledger/website/binaries/
|
||||||
|
|
||||||
# show project stats useful for release notes
|
# show project stats useful for release notes
|
||||||
stats: showlastreleasedate showreleaseauthors showloc showcov showerrors showlocalchanges showreleasechanges benchtest
|
stats: showlastreleasedate showreleaseauthors showloc showcov showerrors showlocalchanges showreleasechanges benchmark
|
||||||
|
|
||||||
showreleaseauthors:
|
showreleaseauthors:
|
||||||
@echo Patch authors since last release:
|
@echo Patch authors since last release:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user