balatro-gba/tests/run_tests.sh
MeirGavish 43d837571e
Truncate Scores (#269)
* Fixed score truncation erasure, and centering for chips, mult, score and "temp score

* Added centering for money

* Added tests for truncate_uint_to_suffixed_str()

* Fixed u32 bug with get_digits

* Fixed score flames for large numbers

* Small change to update documentation

* Added 1 pixel on to score rect on the left to make room for full character tile + reset_top_left_panel_bottom_row() refactor

* Replaced directional defines with enums

* Updated ante_lut comment

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-12-02 08:28:36 +02:00

23 lines
457 B
Bash
Executable File

#!/bin/bash
set -eu
run_test() {
name="$1"
echo "==============================================================================="
echo "Running test for: $1"
echo "==============================================================================="
cd "$name" 2>&1 > /dev/null
make clean > /dev/null
make > /dev/null
./build/"$name"_test
cd - 2>&1 > /dev/null
}
run_test bitset
run_test pool
run_test list
run_test util