taint

Crypto forensics for private use
git clone git://git.defalsify.org/taint.git
Log | Files | Refs | LICENSE

commit df183c2de544d910df39799cb8323acea78412ed
parent e533b649c7cffa9187b920cd3dc2fd1fc652f8fa
Author: nolash <dev@holbrook.no>
Date:   Fri, 16 Apr 2021 13:21:30 +0200

Add test runner

Diffstat:
Arun_tests.sh | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/run_tests.sh b/run_tests.sh @@ -0,0 +1,8 @@ +for f in `ls tests`; do + if [ "test_" == ${f:0:5} ]; then + python tests/$f + if [ $? -ne 0 ]; then + exit 1 + fi + fi +done