You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@milagro.apache.org by cm...@apache.org on 2019/10/11 12:17:59 UTC

[incubator-milagro-dta] branch tendermint updated: Add looptest, repeating End2End tester

This is an automated email from the ASF dual-hosted git repository.

cmorris pushed a commit to branch tendermint
in repository https://gitbox.apache.org/repos/asf/incubator-milagro-dta.git


The following commit(s) were added to refs/heads/tendermint by this push:
     new 4e3b56f  Add looptest, repeating End2End tester
4e3b56f is described below

commit 4e3b56f35d193b49af998fc5fc898113381807e8
Author: Christopher Morris <ch...@morris.net>
AuthorDate: Fri Oct 11 13:17:49 2019 +0100

    Add looptest, repeating End2End tester
---
 cmd/servicetester/looptest | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/cmd/servicetester/looptest b/cmd/servicetester/looptest
new file mode 100755
index 0000000..42920cb
--- /dev/null
+++ b/cmd/servicetester/looptest
@@ -0,0 +1,7 @@
+count=1
+while :
+do
+  echo "Run $count"
+  ./fulltest.sh
+  ((count++))
+done