11 lines
123 B
Bash
11 lines
123 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
TESTS=./test_*
|
||
|
|
||
|
for f in $TESTS
|
||
|
do
|
||
|
valgrind --tool=memcheck --leak-check=full $f
|
||
|
done
|