Module Name: src Committed By: pgoyette Date: Thu Nov 11 22:18:53 UTC 2010
Modified Files: src/tests/lib/libevent: t_event.sh Log Message: The libevent tests are fairly lengthy - each test case actually contains about 20 or so mini-cases. Increase the timeout for these tests to let them run to completion. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libevent/t_event.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/lib/libevent/t_event.sh diff -u src/tests/lib/libevent/t_event.sh:1.1 src/tests/lib/libevent/t_event.sh:1.2 --- src/tests/lib/libevent/t_event.sh:1.1 Mon Nov 2 10:15:45 2009 +++ src/tests/lib/libevent/t_event.sh Thu Nov 11 22:18:53 2010 @@ -1,4 +1,4 @@ -# $NetBSD: t_event.sh,v 1.1 2009/11/02 10:15:45 plunky Exp $ +# $NetBSD: t_event.sh,v 1.2 2010/11/11 22:18:53 pgoyette Exp $ # # Copyright (c) 2009 The NetBSD Foundation, Inc. # All rights reserved. @@ -35,6 +35,7 @@ atf_test_case kqueue kqueue_head() { atf_set "descr" "Test libevent with kqueue backend" + atf_set "timeout" "90" } kqueue_body() { EVENT_NOPOLL=1 EVENT_NOSELECT=1 \ @@ -44,6 +45,7 @@ atf_test_case poll poll_head() { atf_set "descr" "Test libevent with poll backend" + atf_set "timeout" "90" } poll_body() { EVENT_NOKQUEUE=1 EVENT_NOSELECT=1 \ @@ -53,6 +55,7 @@ atf_test_case select select_head() { atf_set "descr" "Test libevent with select backend" + atf_set "timeout" "90" } select_body() { EVENT_NOKQUEUE=1 EVENT_NOPOLL=1 \