Skip to content

Commit

Permalink
Simple script calling all automated test cases for buildbot...
Browse files Browse the repository at this point in the history
  • Loading branch information
christophmuellerorg committed Aug 4, 2014
1 parent 352ae56 commit 5b6da73
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions sim/buildbot.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5b6da73

Please sign in to comment.