Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 2 Aug 2017 09:49:41 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r321918 - head/tests/sys/aio
Message-ID:  <201708020949.v729nf26048703@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Wed Aug  2 09:49:41 2017
New Revision: 321918
URL: https://svnweb.freebsd.org/changeset/base/321918

Log:
  Fix cosmetic issue with error message
  
  Add missing space in error message related to PR noted.
  
  MFC after:	2 weeks
  PR:		220398

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

Modified: head/tests/sys/aio/lio_test.c
==============================================================================
--- head/tests/sys/aio/lio_test.c	Wed Aug  2 09:00:59 2017	(r321917)
+++ head/tests/sys/aio/lio_test.c	Wed Aug  2 09:49:41 2017	(r321918)
@@ -99,7 +99,7 @@ ATF_TC_BODY(lio_listio_empty_nowait_signal, tc)
 	struct sigevent sev;
 
 	atf_tc_expect_timeout("Bug 220398 - lio_listio(2) never sends"
-	    "asynchronous notification if nent==0");
+	    " asynchronous notification if nent==0");
 	ATF_REQUIRE_EQ(0, sem_init(&completions, false, 0));
 	sev.sigev_notify = SIGEV_SIGNAL;
 	sev.sigev_signo = SIGUSR1;
@@ -120,7 +120,7 @@ ATF_TC_BODY(lio_listio_empty_nowait_thread, tc)
 	struct sigevent sev;
 
 	atf_tc_expect_timeout("Bug 220398 - lio_listio(2) never sends"
-	    "asynchronous notification if nent==0");
+	    " 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?201708020949.v729nf26048703>