From 2d8a4ed485c69d3caaabdbe6f504de23cd8868ab Mon Sep 17 00:00:00 2001 From: Cynopolis Date: Wed, 21 May 2025 18:03:18 -0400 Subject: [PATCH] Added matrix test timings --- .gitea/workflows/Merge-Checker.yaml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/Merge-Checker.yaml b/.gitea/workflows/Merge-Checker.yaml index 969eb70..3cfe4a0 100644 --- a/.gitea/workflows/Merge-Checker.yaml +++ b/.gitea/workflows/Merge-Checker.yaml @@ -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 \ No newline at end of file + fi