File: test_loop

package info (click to toggle)
ust 2.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,272 kB
  • sloc: ansic: 14,256; sh: 11,159; makefile: 282; python: 227; cpp: 59
file content (12 lines) | stat: -rwxr-xr-x 164 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

DIR=$(dirname $0)

while [ 0 ]; do
	$DIR/runtests
	if [ "$?" != "0" ]; then
		break;
	fi
done

echo "$0: ********* STOPPED BECAUSE OF ERROR *********"