Skip to content
Snippets Groups Projects
Commit a48c0c61 authored by mio's avatar mio Committed by omni
Browse files

community/mustach: disable valgrind in tests on s390x

Running the tests with valgrind resulted in a segfault on the 3.21 s390x
builder. Disable use of valgrind in tests on the arch until resolved.

```
==8545== Memcheck, a memory error detector
==8545== Copyright (C) 2002-2024, and GNU GPL'd, by Julian Seward et al.
==8545== Using Valgrind-3.23.0 and LibVEX; rerun with -h for copyright info
==8545== Command: ../mustach json must
==8545==

valgrind: m_debuginfo/image.c:700 (get_slowcase): Assertion 'i <= img->ces_used' failed.
Segmentation fault
```
parent 858e4925
No related branches found
No related tags found
1 merge request!75216community/mustach: disable valgrind in tests on s390x
Pipeline #272979 skipped
...@@ -20,9 +20,10 @@ for _j in $_jsonlibs; do ...@@ -20,9 +20,10 @@ for _j in $_jsonlibs; do
done done
# armv7: Segmentation fault (valgrind error #15759) # armv7: Segmentation fault (valgrind error #15759)
# s390x: Segmentation fault (valgrind error on 3.21 builder)
# armhf,riscv64,loongarch64: doesn't have valgrind # armhf,riscv64,loongarch64: doesn't have valgrind
case "$CARCH" in case "$CARCH" in
armv7|armhf|riscv64|loongarch64) export NOVALGRIND=1;; armv7|s390x|armhf|riscv64|loongarch64) export NOVALGRIND=1;;
*) checkdepends="valgrind";; *) checkdepends="valgrind";;
esac esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment