From c4d9ff51339f3126727b4edd585fc93ba80cde1b Mon Sep 17 00:00:00 2001 From: Peter Stamfest Date: Wed, 5 Mar 2014 21:30:28 +0100 Subject: [PATCH] Add alltests script to run all tests at once --- tests/alltests | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 tests/alltests diff --git a/tests/alltests b/tests/alltests new file mode 100755 index 00000000..77569c52 --- /dev/null +++ b/tests/alltests @@ -0,0 +1,13 @@ +#!/bin/bash + +# fail immediately if any subsequent command fails +set -e + +BASEDIR=$(dirname $0) +cd $BASEDIR + +./modify1 +./modify2 +./modify3 +./modify4 +./modify5 -- 2.47.3