Added matrix test timings
All checks were successful
Merge-Checker / build_and_test (pull_request) Successful in 24s

This commit is contained in:
2025-05-21 18:03:18 -04:00
parent e179fcc701
commit 2d8a4ed485

View File

@@ -38,11 +38,9 @@ jobs:
run: |
if [ -x build/unit-tests/matrix-timing-tests ]; then
echo "Running matrix-timing-tests with timing"
# Run the test executable and capture timing info
# Assuming the executable prints timings per test internally
# If not, you might want to wrap each subtest with 'time' or
# run the entire executable with time:
/usr/bin/time -v build/unit-tests/matrix-timing-tests
# Enable Catch2 timing output via command-line flag -d yes
# Wrap with /usr/bin/time for overall runtime measurement and resource usage
/usr/bin/time -v build/unit-tests/matrix-timing-tests -d yes
else
echo "matrix-timing-tests executable not found or not executable"
fi
fi