File: dotests.sh

package info (click to toggle)
libcommoncpp2 1.8.1-10
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,300 kB
  • sloc: cpp: 29,221; sh: 10,352; ansic: 1,134; makefile: 238; xml: 5
file content (13 lines) | stat: -rwxr-xr-x 214 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# execute all test to make a single output

for t in bug1 bug2 thread1 digest tcpstr1 url1; do
	echo $t test...
	echo $t test... 1>&2
	./$t
	if [ $? != 0 ]; then
		echo Exit with error from $t
	fi
done