Added 'testall' which is a simple bash-script that runs all tests

This commit is contained in:
Daniel Marjamäki 2008-01-05 16:53:51 +00:00
parent 658f33328b
commit 2d8a6d3f47
1 changed files with 9 additions and 0 deletions

9
testall Executable file
View File

@ -0,0 +1,9 @@
#!/bin/bash
for X in test*
do
./cppcheck $X/$X.cpp
done