Revision ca478254582675bf245a88210626bd6666bc5af2 authored by Valeri Karpov on 05 June 2015, 18:14:56 UTC, committed by Valeri Karpov on 05 June 2015, 18:14:56 UTC
1 parent 611b283
Raw File
contRun.sh
#!/bin/bash

make test

ret=$?

while [ $ret == 0 ]; do
  make test
  ret=$?
done
back to top