You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kvrocks.apache.org by ti...@apache.org on 2022/09/23 00:36:31 UTC

[incubator-kvrocks] branch unstable updated: Fix sanitizer report checking in CI (#912)

This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch unstable
in repository https://gitbox.apache.org/repos/asf/incubator-kvrocks.git


The following commit(s) were added to refs/heads/unstable by this push:
     new d469155  Fix sanitizer report checking in CI (#912)
d469155 is described below

commit d469155d7493ef2d61559eb525e84b3758dd7cbc
Author: Twice <tw...@gmail.com>
AuthorDate: Fri Sep 23 08:36:25 2022 +0800

    Fix sanitizer report checking in CI (#912)
---
 .github/workflows/kvrocks.yaml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/kvrocks.yaml b/.github/workflows/kvrocks.yaml
index 46c83fb..15dc683 100644
--- a/.github/workflows/kvrocks.yaml
+++ b/.github/workflows/kvrocks.yaml
@@ -208,11 +208,11 @@ jobs:
             cp minica.pem tests/tcl/tests/tls/ca.crt
             ./x.py test tcl build --tls --single unit/tls --dont-clean
           fi
-          SANITIZER_OUTPUT=$(grep "Sanitizer:" tests/tmp -r || true)
+          SANITIZER_OUTPUT=$(grep "Sanitizer:" tests/tcl/tests/tmp -r || true)
           if [[ $SANITIZER_OUTPUT ]]; then
             echo "$SANITIZER_OUTPUT"
             echo "\ndetail reports:\n"
-            cat $(find tests/tmp -iname stderr)
+            cat $(find tests/tcl/tests/tmp -iname stderr)
             echo "sanitizer error was reported, exiting..."
             exit 1
           fi