contRun.sh 82 B

12345678910
  1. #!/bin/bash
  2. make test
  3. ret=$?
  4. while [ $ret == 0 ]; do
  5. make test
  6. ret=$?
  7. done