summaryrefslogtreecommitdiff
path: root/test/test.sh
blob: 5287a8a5b032aa40fd4e6f85b2ee3e3c1c109197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!/bin/sh

if test "x$TEST_OUTPUT_FILE" = "x"
then
   TEST_OUTPUT_FILE=/dev/null
fi

touch "$TEST_OUTPUT_FILE" || exit 1

TEST_DIR=.

T=`echo "$0" | sed -e 's/test.sh$//'`
if test -x "$T/test-init"
then
 TEST_DIR="$T"
fi

setup () {
	 EVENT_NOKQUEUE=yes; export EVENT_NOKQUEUE
	 EVENT_NODEVPOLL=yes; export EVENT_NODEVPOLL
	 EVENT_NOPOLL=yes; export EVENT_NOPOLL
	 EVENT_NOSELECT=yes; export EVENT_NOSELECT
	 EVENT_NOEPOLL=yes; export EVENT_NOEPOLL
	 EVENT_NOEVPORT=yes; export EVENT_NOEVPORT
}

announce () {
    echo $@
    echo $@ >>"$TEST_OUTPUT_FILE"
}

run_tests () {
	if $TEST_DIR/test-init 2>>"$TEST_OUTPUT_FILE" ;
	then
	        true
	else
		announce Skipping test
		return
	fi	

announce -n " test-eof: "
if $TEST_DIR/test-eof >>"$TEST_OUTPUT_FILE" ; 
then 
	announce OKAY ; 
else 
	announce FAILED ; 
fi
announce -n " test-weof: "
if $TEST_DIR/test-weof >>"$TEST_OUTPUT_FILE" ; 
then 
	announce OKAY ; 
else 
	announce FAILED ; 
fi
announce -n " test-time: "
if $TEST_DIR/test-time >>"$TEST_OUTPUT_FILE" ; 
then 
	announce OKAY ; 
else 
	announce FAILED ; 
fi
announce -n " regress: "
if $TEST_DIR/regress >>"$TEST_OUTPUT_FILE" ; 
then 
	announce OKAY ; 
else 
	announce FAILED ; 
fi
}

announce "Running run_testss:"

# Need to do this by hand?
setup
unset EVENT_NOKQUEUE
export EVENT_NOKQUEUE
announce "KQUEUE"
run_tests

setup
unset EVENT_NODEVPOLL
export EVENT_NODEVPOLL
announce "DEVPOLL"
run_tests

setup
unset EVENT_NOPOLL
export EVENT_NOPOLL
announce "POLL"
run_tests

setup
unset EVENT_NOSELECT
export EVENT_NOSELECT
announce "SELECT"
run_tests

setup
unset EVENT_NOEPOLL
export EVENT_NOEPOLL
announce "EPOLL"
run_tests

setup
unset EVENT_NOEVPORT
export EVENT_NOEVPORT
announce "EVPORT"
run_tests