Skip to content

Commit

Permalink
Add runInLoop
Browse files Browse the repository at this point in the history
  • Loading branch information
wtgodbe committed Apr 19, 2018
0 parents commit 92dd57b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions runInLoop.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/env bash

count=0

while :
do
echo "In loop $count"
$1/dotnet xunit.console.netcore.exe $2 -method $3
if [[$? != 0]]; then exit; fi
((count++))
done

exit 0

0 comments on commit 92dd57b

Please sign in to comment.