File: networktests

package info (click to toggle)
librecast 0.11.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,760 kB
  • sloc: ansic: 31,144; asm: 28,570; sh: 3,164; makefile: 713; python: 70
file content (22 lines) | stat: -rwxr-xr-x 270 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh

set -x

autoreconf -v -i -f

./configure

tests="$@"

failed=
for t in $tests ; do
	make test/${t} SOURCEDIR=/non-existent/ || failed="$failed $t"
done

if [ -z "$failed" ]; then
	echo "All tests passed!"
	exit 0
else
	echo "Tests failed: $failed"
	exit 1
fi