Created
March 19, 2012 11:35
-
-
Save stepancheg/2108533 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/zsh -e | |
while :; do | |
for d in jet jet-fixed; do | |
echo | |
echo | |
echo | |
echo | |
echo | |
date | |
cd /Users/yozh/devel/jb/$d | |
echo "$d -server" | |
bin/run-test -server org.jetbrains.jet.checkers.JetDiagnosticsTestForever 300 | |
echo | |
echo | |
echo "$d -client" | |
bin/run-test -client org.jetbrains.jet.checkers.JetDiagnosticsTestForever 300 | |
done | |
done |& tee log.`date +%Y%m%dT%H%M%S` | |
# vim: set ts=4 sw=4 et: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment