瀏覽代碼

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.
Christopher Haster 2 年之前
父節點
當前提交
8610f7c36b
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      .github/workflows/test.yml

+ 2 - 1
.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