6 lines
97 B
Bash
Executable file
6 lines
97 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
cd ../tests
|
|
pwd
|
|
|
|
find . -name 'test*.txt' | xargs ${VALGRIND} ../src/testdriver
|