From 2d8a6d3f474f1deed932b6e4cefd0c16fce46bba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 5 Jan 2008 16:53:51 +0000 Subject: [PATCH] Added 'testall' which is a simple bash-script that runs all tests --- testall | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 testall diff --git a/testall b/testall new file mode 100755 index 000000000..b2dfc907c --- /dev/null +++ b/testall @@ -0,0 +1,9 @@ +#!/bin/bash + +for X in test* +do +./cppcheck $X/$X.cpp +done + + +