Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(326)

Unified Diff: third_party/libevent/test/test.sh

Issue 1531573008: move libevent into base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix shim path Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libevent/test/regress_rpc.c ('k') | third_party/libevent/test/test-eof.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libevent/test/test.sh
diff --git a/third_party/libevent/test/test.sh b/third_party/libevent/test/test.sh
deleted file mode 100755
index 506a1988c34b6cd59d2ff7dee9043ca5a0a785a0..0000000000000000000000000000000000000000
--- a/third_party/libevent/test/test.sh
+++ /dev/null
@@ -1,91 +0,0 @@
-#!/bin/sh
-
-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
-}
-
-test () {
- if ./test-init 2>/dev/null ;
- then
- true
- else
- 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
-export EVENT_NOKQUEUE
-echo "KQUEUE"
-test
-
-setup
-unset EVENT_NODEVPOLL
-export EVENT_NODEVPOLL
-echo "DEVPOLL"
-test
-
-setup
-unset EVENT_NOPOLL
-export EVENT_NOPOLL
-echo "POLL"
-test
-
-setup
-unset EVENT_NOSELECT
-export EVENT_NOSELECT
-echo "SELECT"
-test
-
-setup
-unset EVENT_NOEPOLL
-export EVENT_NOEPOLL
-echo "EPOLL"
-test
-
-setup
-unset EVENT_NOEVPORT
-export EVENT_NOEVPORT
-echo "EVPORT"
-test
-
-
-
« no previous file with comments | « third_party/libevent/test/regress_rpc.c ('k') | third_party/libevent/test/test-eof.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698