mirror of
https://github.com/RPCS3/cereal.git
synced 2025-03-04 21:49:00 +00:00
11 lines
123 B
Bash
Executable File
11 lines
123 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
TESTS=./test_*
|
|
|
|
for f in $TESTS
|
|
do
|
|
valgrind --tool=memcheck --leak-check=full $f
|
|
done
|