From d5b148ad5f2313dc308a0ccd3f131cb2b42a92a4 Mon Sep 17 00:00:00 2001 From: Saleem Rashid Date: Sat, 3 Jun 2017 15:34:56 +0100 Subject: [PATCH] travis.yml: Add Valgrind --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 0b07782ad..4d9dcdf61 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,7 @@ addons: - cmake-data - libssl-dev - python-pip + - valgrind install: - pip install --user pytest ecdsa curve25519-donna @@ -21,6 +22,7 @@ install: script: - make - ./tests + - CK_TIMEOUT_MULTIPLIER=20 valgrind -q --error-exitcode=1 ./tests - ./test-openssl 1000 - ITERS=10 py.test - mkdir _build && cd _build && cmake .. && make && cd ..