1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-04-11 04:45:45 +00:00

travis.yml: Add Valgrind

This commit is contained in:
Saleem Rashid 2017-06-03 15:34:56 +01:00 committed by Pavol Rusnak
parent 7f07896c9b
commit d5b148ad5f

View File

@ -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 ..