From 5b6da731587b74242444ad5f3e347a2b0fa16df6 Mon Sep 17 00:00:00 2001 From: Christoph Mueller Date: Mon, 4 Aug 2014 10:29:39 +0200 Subject: [PATCH] Simple script calling all automated test cases for buildbot... --- sim/buildbot.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 sim/buildbot.sh diff --git a/sim/buildbot.sh b/sim/buildbot.sh new file mode 100755 index 0000000..7a4663f --- /dev/null +++ b/sim/buildbot.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# Buildbot script, running the test cases for buildbot +# each testcase runs an all-to-all communication through +# the network and verifies the transaction afterwards + +if ! make sync_test2_auto; then + exit 1 +fi +if ! make async_test2_auto; then + exit 1 +fi +if ! make test_tiled_4x4_pipelined_auto; then + exit 1 +fi