summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2023-02-16 10:50:58 +0200
committerGitHub <noreply@github.com>2023-02-16 10:50:58 +0200
commit5b61b0dc6d2579ee484fa6cf29bfac59513f84ab (patch)
tree0f4bbced22cb5c2af8a9b9befa3e091e2e7c138e /.github
parent233abbbe03211ca700e10f827d289da24d9bd7e3 (diff)
downloadredis-5b61b0dc6d2579ee484fa6cf29bfac59513f84ab.tar.gz
skip new page cache reclame unit test when running in valgrind (#11808)
the new test is incompatible with valgrind. added a new `--valgrind` argument to `redis-server tests` mode, which will cause that test to be skipped..
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/daily.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml
index f1108ff6e..71e43002c 100644
--- a/.github/workflows/daily.yml
+++ b/.github/workflows/daily.yml
@@ -406,7 +406,7 @@ jobs:
- name: unittest
if: true && !contains(github.event.inputs.skiptests, 'unittest')
run: |
- valgrind --track-origins=yes --suppressions=./src/valgrind.sup --show-reachable=no --show-possibly-lost=no --leak-check=full --log-file=err.txt ./src/redis-server test all
+ valgrind --track-origins=yes --suppressions=./src/valgrind.sup --show-reachable=no --show-possibly-lost=no --leak-check=full --log-file=err.txt ./src/redis-server test all --valgrind
if grep -q 0x err.txt; then cat err.txt; exit 1; fi
test-valgrind-no-malloc-usable-size-test:
@@ -463,7 +463,7 @@ jobs:
- name: unittest
if: true && !contains(github.event.inputs.skiptests, 'unittest')
run: |
- valgrind --track-origins=yes --suppressions=./src/valgrind.sup --show-reachable=no --show-possibly-lost=no --leak-check=full --log-file=err.txt ./src/redis-server test all
+ valgrind --track-origins=yes --suppressions=./src/valgrind.sup --show-reachable=no --show-possibly-lost=no --leak-check=full --log-file=err.txt ./src/redis-server test all --valgrind
if grep -q 0x err.txt; then cat err.txt; exit 1; fi
test-sanitizer-address: