mirror of
https://github.com/cellos51/balatro-gba.git
synced 2026-04-26 01:30:39 -05:00
* 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>
23 lines
457 B
Bash
Executable File
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
|