7ea33eac02
libevent-1.1a. svn merge -r10917:11006 https://svn.open-mpi.org/svn/ompi/tmp/libevent-update This commit was SVN r11022. The following SVN revisions from the original message are invalid or inconsistent and therefore were not cross-referenced: r10917 r11006
84 строки
987 B
Bash
Исполняемый файл
84 строки
987 B
Bash
Исполняемый файл
#!/bin/sh
|
|
|
|
setup () {
|
|
export EVENT_NOKQUEUE=yes
|
|
export EVENT_NODEVPOLL=yes
|
|
export EVENT_NOPOLL=yes
|
|
export EVENT_NOSELECT=yes
|
|
export EVENT_NOEPOLL=yes
|
|
export EVENT_NORTSIG=yes
|
|
}
|
|
|
|
test () {
|
|
if ! ./test-init 2>/dev/null ;
|
|
then
|
|
echo Skipping test
|
|
return
|
|
fi
|
|
|
|
echo -n " test-eof: "
|
|
if ./test-eof >/dev/null ;
|
|
then
|
|
echo OKAY ;
|
|
else
|
|
echo FAILED ;
|
|
fi
|
|
echo -n " test-weof: "
|
|
if ./test-weof >/dev/null ;
|
|
then
|
|
echo OKAY ;
|
|
else
|
|
echo FAILED ;
|
|
fi
|
|
echo -n " test-time: "
|
|
if ./test-time >/dev/null ;
|
|
then
|
|
echo OKAY ;
|
|
else
|
|
echo FAILED ;
|
|
fi
|
|
echo -n " regress: "
|
|
if ./regress >/dev/null ;
|
|
then
|
|
echo OKAY ;
|
|
else
|
|
echo FAILED ;
|
|
fi
|
|
}
|
|
|
|
echo "Running tests:"
|
|
|
|
# Need to do this by hand?
|
|
setup
|
|
unset EVENT_NOKQUEUE
|
|
echo "KQUEUE"
|
|
test
|
|
|
|
setup
|
|
unset EVENT_NODEVPOLL
|
|
echo "DEVPOLL"
|
|
test
|
|
|
|
setup
|
|
unset EVENT_NOPOLL
|
|
echo "POLL"
|
|
test
|
|
|
|
setup
|
|
unset EVENT_NOSELECT
|
|
echo "SELECT"
|
|
test
|
|
|
|
setup
|
|
unset EVENT_NORTSIG
|
|
echo "RTSIG"
|
|
test
|
|
|
|
setup
|
|
unset EVENT_NOEPOLL
|
|
echo "EPOLL"
|
|
test
|
|
|
|
|
|
|