libevent/test/test.sh
Nick Mathewson c382de6421 Allow the user to redirect the verbose output of test/test.sh to a file
By default, the test.sh script still suppresses the output of all the
tests it invokes.  Now, however, you can have that output written to
a file specified in the TEST_OUTPUT_FILE shell variable.
2009-12-29 17:59:55 -05:00

103 lines
1.5 KiB
Bash
Executable File

#!/bin/sh
if [ "x$TEST_OUTPUT_FILE" = "x" ]; then
TEST_OUTPUT_FILE=/dev/null
fi
touch "$TEST_OUTPUT_FILE" || exit 1;
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"
}
test () {
if ./test-init 2>>"$TEST_OUTPUT_FILE" ;
then
true
else
announce Skipping test
return
fi
announce -n " test-eof: "
if ./test-eof >>"$TEST_OUTPUT_FILE" ;
then
announce OKAY ;
else
announce FAILED ;
fi
announce -n " test-weof: "
if ./test-weof >>"$TEST_OUTPUT_FILE" ;
then
announce OKAY ;
else
announce FAILED ;
fi
announce -n " test-time: "
if ./test-time >>"$TEST_OUTPUT_FILE" ;
then
announce OKAY ;
else
announce FAILED ;
fi
announce -n " regress: "
if ./regress >>"$TEST_OUTPUT_FILE" ;
then
announce OKAY ;
else
announce FAILED ;
fi
}
announce "Running tests:"
# Need to do this by hand?
setup
unset EVENT_NOKQUEUE
export EVENT_NOKQUEUE
announce "KQUEUE"
test
setup
unset EVENT_NODEVPOLL
export EVENT_NODEVPOLL
announce "DEVPOLL"
test
setup
unset EVENT_NOPOLL
export EVENT_NOPOLL
announce "POLL"
test
setup
unset EVENT_NOSELECT
export EVENT_NOSELECT
announce "SELECT"
test
setup
unset EVENT_NOEPOLL
export EVENT_NOEPOLL
announce "EPOLL"
test
setup
unset EVENT_NOEVPORT
export EVENT_NOEVPORT
announce "EVPORT"
test