8f2c118e33
* New command line option for testing * Fix command line option * Allow races from command line without player kart * Use the new command line option for testing Also increase the default number of karts for testing from 9 (including player kart) to 15 (no player kart) for reduced randomness. And set the default test difficulty to SuperTux
10 lines
543 B
Bash
Executable File
10 lines
543 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for track in abyss candela_city cocoa_temple cornfield_crossing fortmagma gran_paradiso_island greenvalley hacienda lighthouse mansion mines minigolf olivermath sandtrack scotland snowmountain snowtuxpeak stk_enterprise volcano_island xr591 zengarden; do
|
|
echo "Testing $track"
|
|
$1 --log=0 -R \
|
|
--aiNP=nolok,nolok,nolok,nolok,nolok,nolok,nolok,nolok,nolok,nolok,nolok,nolok,nolok,nolok,nolok \
|
|
--track=$track --difficulty=3 --type=1 --test-ai=2 \
|
|
--profile-laps=10 --no-graphics > stdout.$track
|
|
done
|