From 8610f7c36b6554d65b7502222c76c286e4c8d0e2 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Tue, 6 Jun 2023 21:31:50 -0500 Subject: [PATCH] Increased context on failures for Valgrind in CI Valgrind output is very verbose but useful, with a default limit of 5 lines the output usually doesn't contain much useful info. --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2cee3528..0d54b20a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -371,7 +371,8 @@ jobs: # on one geometry - name: test-valgrind run: | - TESTFLAGS="$TESTFLAGS --valgrind -Gdefault -Pnone" make test + TESTFLAGS="$TESTFLAGS --valgrind --context=1024 -Gdefault -Pnone" \ + make test # test that compilation is warning free under clang # run with Clang, mostly to check for Clang-specific warnings