commit e65f791ae60367f38f23b077fd07c436731efbd4 parent f65750e80b05142817546168d1af4e37760bf815 Author: Daniel Gultsch <daniel@gultsch.de> Date: Mon, 6 Jun 2016 13:58:03 +0200 added small wrapper script that runs tests on all accounts in accounts.xml Diffstat:
A | runall.sh | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/runall.sh b/runall.sh @@ -0,0 +1,6 @@ +#!/bin/bash +for account in `grep entry accounts.xml | awk -F '"' '{print $2}'`; do + server=$(echo $account | awk -F '@' '{print $2}') + echo "testing $server" + java -jar target/ComplianceTester-0.1.jar $account > reports/$server.txt +done;