calculator/tests/test_math.sh
Wesley Moore e52725d564
Add tests for add64
Currently the test harness isn't looping, so the test is failing.
2025-02-11 22:08:32 +10:00

7 lines
181 B
Bash

#!/bin/sh
test_add64() {
result=$("${QEMU}" -B 0x80000000 -s 2k tests/math_add64.elf)
test $? -eq 0 && test "${result}" = "00000003.80000000\n00000003.C0000000" # 3.5, 3.75
}