summaryrefslogtreecommitdiff
path: root/libaio-0.3.109/harness/runtests.sh
blob: 717c72a614b7db7ac8558d870b6db1c459a1e76c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

passes=0
fails=0

echo "Test run starting at" `date`

while [ $# -ge 1 ] ; do
	this_test=$1
	shift
	echo "Starting $this_test"
	$this_test 2>&1
	res=$?
	if [ $res -eq 0 ] ; then str="" ; passes=$[passes + 1] ; else str=" -- FAILED" ; fails=$[fails + 1] ; fi
	echo "Completed $this_test with $res$str".
done

echo "Pass: $passes  Fail: $fails"
echo "Test run complete at" `date`