buildat/3rdparty/cereal/unittests/run_valgrind.sh

11 lines
123 B
Bash
Raw Normal View History

2014-09-16 18:02:01 +03:00
#!/usr/bin/env bash
set -e
TESTS=./test_*
for f in $TESTS
do
valgrind --tool=memcheck --leak-check=full $f
done