Skip to content

Instantly share code, notes, and snippets.

@stepancheg
Created March 19, 2012 11:35
Show Gist options
  • Save stepancheg/2108533 to your computer and use it in GitHub Desktop.
Save stepancheg/2108533 to your computer and use it in GitHub Desktop.
#!/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