diff options
| author | John Wiegley <johnw@newartisans.com> | 2008-09-02 00:11:50 -0400 |
|---|---|---|
| committer | John Wiegley <johnw@newartisans.com> | 2008-09-02 00:11:50 -0400 |
| commit | 35fed4dba77f64b0177b809b872c514f10cf64b5 (patch) | |
| tree | 8b5cd65d614d2c77ba24e46edb9942c55176930c /Makefile.am | |
| parent | a8eeb9d063117231db2700a681d25179566b1278 (diff) | |
'make check' is now 0-based, like the rest of the database-related code. Only
in the display code (the top-level user interface) are database games
presented using a 1-base system.
Diffstat (limited to 'Makefile.am')
| -rw-r--r-- | Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index 2b888b0..4d58055 100644 --- a/Makefile.am +++ b/Makefile.am @@ -71,7 +71,7 @@ chess-eco.fen: chess-eco.pos chess-eco.el TESTS = chess-test DATABASE = $(shell test -r test/largedb.sg3 && echo test/largedb || echo test/historic.pgn) -START = $(shell test -r test/largedb.sg3 && perl -e 'print int(rand(4000000)), "\n";' || echo 1) +START = $(shell test -r test/largedb.sg3 && perl -e 'print int(rand(4000000)), "\n";' || echo 0) COUNT = 100000 # Note: There are 4,209,433 games in test/largedb, if you download the files @@ -85,8 +85,8 @@ COUNT = 100000 # since the Makefile will not regenerate it if you aborted a previous test # run). # -# chess1 $ rm -f chess-test; nice -n 20 make START=1 COUNT=2104716 check -# chess2 $ rm -f chess-test; nice -n 20 make START=2104716 COUNT=-1 check +# chess1 $ rm -f chess-test; nice -n 20 make START=0 COUNT=2104715 check +# chess2 $ rm -f chess-test; nice -n 20 make START=2104715 COUNT=-1 check # # I run both of these using `screen', with a vertical split so I can watch # them both running. I type C-a H in each screen window before starting, so |
