aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorThanos Makatos <thanos.makatos@nutanix.com>2021-11-11 09:24:51 +0000
committerGitHub <noreply@github.com>2021-11-11 09:24:51 +0000
commit68f2cae354c5ebea13c2c4628fb012ad756fd6c9 (patch)
treeeddf662dffa1d654b9ce0cc29337a5f910b5276e /test
parenta9fd732da9458a8113c758471deac63cc3ef1323 (diff)
downloadlibvfio-user-68f2cae354c5ebea13c2c4628fb012ad756fd6c9.zip
libvfio-user-68f2cae354c5ebea13c2c4628fb012ad756fd6c9.tar.gz
libvfio-user-68f2cae354c5ebea13c2c4628fb012ad756fd6c9.tar.bz2
enable options in Valgrind that improve tracking uninit values (#617)
These extra options make tracking uninitilized values easier. They make Valgrind run slower so we need to increase the timeouts in the CI. Signed-off-by: Thanos Makatos <thanos.makatos@nutanix.com> Reviewed-by: John Levon <john.levon@nutanix.com>
Diffstat (limited to 'test')
-rwxr-xr-xtest/test-client-server.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test-client-server.sh b/test/test-client-server.sh
index 1862e31..fc51b8a 100755
--- a/test/test-client-server.sh
+++ b/test/test-client-server.sh
@@ -8,7 +8,7 @@ set -e
if [ "$WITH_ASAN" = 1 ]; then
valgrind=""
else
- valgrind="valgrind --quiet --trace-children=yes --error-exitcode=1 --leak-check=full"
+ valgrind="valgrind --quiet --trace-children=yes --error-exitcode=1 --leak-check=full --read-inline-info=yes --read-var-info=yes --track-origins=yes"
fi
sock="/tmp/vfio-user.sock"