mirror of
https://github.com/RPCS3/cereal.git
synced 2025-01-07 11:20:30 +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
|