From fda018fbe05508ca752cedd9ba476f2c94f526b0 Mon Sep 17 00:00:00 2001 From: Al Liu Date: Mon, 20 May 2024 21:28:15 +0800 Subject: [PATCH] WIP --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 560436e3..bbe670ba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -165,17 +165,17 @@ jobs: - name: build & valgrind (vec backend) run: | cargo build --bin test-vec --target-dir . - valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./debug/test-vec + valgrind --error-exitcode=1 --leak-check=full --track-origins=yes --show-leak-kinds=all ./debug/test-vec working-directory: integration - name: build & valgrind (mmap backend) run: | cargo build --bin test-mmap --target-dir . - valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./debug/test-mmap + valgrind --error-exitcode=1 --leak-check=full --track-origins=yes --show-leak-kinds=all ./debug/test-mmap working-directory: integration - name: build & valgrind (mmap-anon backend) run: | cargo build --bin test-mmap-anon --target-dir . - valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./debug/test-mmap-anon + valgrind --error-exitcode=1 --leak-check=full --track-origins=yes --show-leak-kinds=all ./debug/test-mmap-anon working-directory: integration