X-Git-Url: https://git.draconx.ca/gitweb/rrace.git/blobdiff_plain/2529a9651d160ab3a17118d778f5e5584d040765..b39d19918b63b80d1f3b068d158fe43415b9d1b6:/tests/game.at diff --git a/tests/game.at b/tests/game.at index c90ff87..b607cf6 100644 --- a/tests/game.at +++ b/tests/game.at @@ -1,3 +1,52 @@ +# Copyright © 2022 Nick Bowler +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +AT_SETUP([board bitmap functions]) + +AT_CHECK([boardbit], [0], +[[left(0) left(1) left(2) left(3) left(4) + @.... @@... @@@.. @@@@. @@@@@ + @.... @@... @@@.. @@@@. @@@@@ + @.... @@... @@@.. @@@@. @@@@@ + @.... @@... @@@.. @@@@. @@@@@ + @.... @@... @@@.. @@@@. @@@@@ + +right(0) right(1) right(2) right(3) right(4) + @@@@@ .@@@@ ..@@@ ...@@ ....@ + @@@@@ .@@@@ ..@@@ ...@@ ....@ + @@@@@ .@@@@ ..@@@ ...@@ ....@ + @@@@@ .@@@@ ..@@@ ...@@ ....@ + @@@@@ .@@@@ ..@@@ ...@@ ....@ + +above(0) above(1) above(2) above(3) above(4) + @@@@@ @@@@@ @@@@@ @@@@@ @@@@@ + ..... @@@@@ @@@@@ @@@@@ @@@@@ + ..... ..... @@@@@ @@@@@ @@@@@ + ..... ..... ..... @@@@@ @@@@@ + ..... ..... ..... ..... @@@@@ + +below(0) below(1) below(2) below(3) below(4) + @@@@@ ..... ..... ..... ..... + @@@@@ @@@@@ ..... ..... ..... + @@@@@ @@@@@ @@@@@ ..... ..... + @@@@@ @@@@@ @@@@@ @@@@@ ..... + @@@@@ @@@@@ @@@@@ @@@@@ @@@@@ +]]) + +AT_CLEANUP + AT_SETUP([game_do_move zigzag]) AT_CHECK([boardmove m4_do( @@ -540,3 +589,11 @@ AT_CHECK([boardmove m4_do( ]]) AT_CLEANUP + +AT_SETUP([xoshiro256** sanity]) + +AT_CHECK([rng-test >out +grep -v '^ok' out], [0], [1..200 +]) + +AT_CLEANUP