Files
thomas 5f1254d11a
Tests / test_core_function (push) Failing after 12s
import upstream maccel baseline
2026-03-25 09:32:22 +00:00

11 lines
207 B
Bash

#!/bin/bash
for test in tests/*.test.c; do
if [[ ! $test =~ $TEST_NAME ]]; then
continue
fi
gcc ${test} -o maccel_test -lm $DRIVER_CFLAGS || exit 1
./maccel_test || exit 1
rm maccel_test
done