summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Somers <asomers@FreeBSD.org>2020-12-02 00:53:03 +0000
committerAlan Somers <asomers@FreeBSD.org>2020-12-02 00:53:03 +0000
commit23693bd8f3e36b4721d7b59d52154d3e3f49e3cd (patch)
tree5201dedfae36834bf53ef466b6de6283db2c08a4
parent10e64782ed59727e8c9fe4a5c7e17f497903c8eb (diff)
downloadsrc-test2-23693bd8f3e36b4721d7b59d52154d3e3f49e3cd.tar.gz
src-test2-23693bd8f3e36b4721d7b59d52154d3e3f49e3cd.zip
Notes
-rw-r--r--tests/sys/aio/lio_test.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/sys/aio/lio_test.c b/tests/sys/aio/lio_test.c
index cb9dc64acdd0..b6965cc9a4ee 100644
--- a/tests/sys/aio/lio_test.c
+++ b/tests/sys/aio/lio_test.c
@@ -143,8 +143,8 @@ ATF_TC_BODY(lio_listio_empty_nowait_kevent, tc)
int kq, result;
void *udata = (void*)0xdeadbeefdeadbeef;
- atf_tc_expect_timeout("Bug 220398 - lio_listio(2) never sends"
- " asynchronous notification if nent==0");
+ atf_tc_expect_timeout("Bug 251515 - lio_listio(2) never sends"
+ " kevent if nent==0");
kq = kqueue();
ATF_REQUIRE(kq > 0);
sev.sigev_notify = SIGEV_KEVENT;
@@ -168,8 +168,6 @@ ATF_TC_BODY(lio_listio_empty_nowait_signal, tc)
struct aiocb *list = NULL;
struct sigevent sev;
- atf_tc_expect_timeout("Bug 220398 - lio_listio(2) never sends"
- " asynchronous notification if nent==0");
ATF_REQUIRE_EQ(0, sem_init(&completions, false, 0));
sev.sigev_notify = SIGEV_SIGNAL;
sev.sigev_signo = SIGUSR1;
@@ -189,9 +187,6 @@ ATF_TC_BODY(lio_listio_empty_nowait_thread, tc)
struct aiocb *list = NULL;
struct sigevent sev;
- atf_tc_skip("Sometimes hangs and sometimes passes");
- atf_tc_expect_timeout("Bug 220398 - lio_listio(2) never sends"
- " asynchronous notification if nent==0");
ATF_REQUIRE_EQ(0, sem_init(&completions, false, 0));
bzero(&sev, sizeof(sev));
sev.sigev_notify = SIGEV_THREAD;