https://github.com/Automattic/mongoose
Raw File
Tip revision: 9aa05152b1154a0fe5e3ce888f1c81fe4d4990bb authored by Valeri Karpov on 20 July 2015, 15:40:18 UTC
release 3.8.34
Tip revision: 9aa0515
contRun.sh
#!/bin/bash

make test

ret=$?

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