Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Dec 2020 00:53:03 +0000 (UTC)
From:      Alan Somers <asomers@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r368272 - head/tests/sys/aio
Message-ID:  <202012020053.0B20r37u004711@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: asomers
Date: Wed Dec  2 00:53:03 2020
New Revision: 368272
URL: https://svnweb.freebsd.org/changeset/base/368272

Log:
  AIO tests: update expected failure messages after r368265
  
  PR:		220398, 251515
  MFC after:	1 week
  MFC-With:	r368265

Modified:
  head/tests/sys/aio/lio_test.c

Modified: head/tests/sys/aio/lio_test.c
==============================================================================
--- head/tests/sys/aio/lio_test.c	Wed Dec  2 00:48:15 2020	(r368271)
+++ head/tests/sys/aio/lio_test.c	Wed Dec  2 00:53:03 2020	(r368272)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012020053.0B20r37u004711>