Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 18 Sep 2016 06:00:07 +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: r305921 - head/lib/libc/tests/stdio
Message-ID:  <201609180600.u8I607Xo058860@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Sun Sep 18 06:00:07 2016
New Revision: 305921
URL: https://svnweb.freebsd.org/changeset/base/305921

Log:
  Similar to r305920, remove spurious newlines from ATF_REQUIRE_MSG calls
  
  MFC after:	1 week
  Sponsored by:	Dell EMC Isilon

Modified:
  head/lib/libc/tests/stdio/open_memstream2_test.c
  head/lib/libc/tests/stdio/open_wmemstream_test.c

Modified: head/lib/libc/tests/stdio/open_memstream2_test.c
==============================================================================
--- head/lib/libc/tests/stdio/open_memstream2_test.c	Sun Sep 18 05:54:13 2016	(r305920)
+++ head/lib/libc/tests/stdio/open_memstream2_test.c	Sun Sep 18 06:00:07 2016	(r305921)
@@ -159,11 +159,11 @@ ATF_TC_BODY(seek_tests, tc)
 #define SEEK_FAIL(offset, whence, error) do {			\
 	errno = 0;						\
 	ATF_REQUIRE_MSG(fseeko(fp, (offset), (whence)) != 0,	\
-	    "fseeko(%s, %s) did not fail, set pos to %jd\n",	\
+	    "fseeko(%s, %s) did not fail, set pos to %jd",	\
 	    __STRING(offset), __STRING(whence),			\
 	    (intmax_t)ftello(fp));				\
 	ATF_REQUIRE_MSG(errno == (error),			\
-	    "fseeko(%s, %s) failed with %d rather than %s\n",	\
+	    "fseeko(%s, %s) failed with %d rather than %s",	\
 	    __STRING(offset), __STRING(whence),	errno,		\
 	    __STRING(error));					\
 } while (0)
@@ -173,7 +173,7 @@ ATF_TC_BODY(seek_tests, tc)
 	    "fseeko(%s, %s) failed: %s",			\
 	    __STRING(offset), __STRING(whence), strerror(errno)); \
 	ATF_REQUIRE_MSG(ftello(fp) == (result),			\
-	    "fseeko(%s, %s) seeked to %jd rather than %s\n",	\
+	    "fseeko(%s, %s) seeked to %jd rather than %s",	\
 	    __STRING(offset), __STRING(whence),			\
 	    (intmax_t)ftello(fp), __STRING(result));		\
 } while (0)

Modified: head/lib/libc/tests/stdio/open_wmemstream_test.c
==============================================================================
--- head/lib/libc/tests/stdio/open_wmemstream_test.c	Sun Sep 18 05:54:13 2016	(r305920)
+++ head/lib/libc/tests/stdio/open_wmemstream_test.c	Sun Sep 18 06:00:07 2016	(r305921)
@@ -159,11 +159,11 @@ ATF_TC_BODY(seek_tests, tc)
 #define SEEK_FAIL(offset, whence, error) do {			\
 	errno = 0;						\
 	ATF_REQUIRE_MSG(fseeko(fp, (offset), (whence)) != 0,	\
-	    "fseeko(%s, %s) did not fail, set pos to %jd\n",	\
+	    "fseeko(%s, %s) did not fail, set pos to %jd",	\
 	    __STRING(offset), __STRING(whence),			\
 	    (intmax_t)ftello(fp));				\
 	ATF_REQUIRE_MSG(errno == (error),			\
-	    "fseeko(%s, %s) failed with %d rather than %s\n",	\
+	    "fseeko(%s, %s) failed with %d rather than %s",	\
 	    __STRING(offset), __STRING(whence),	errno,		\
 	    __STRING(error));					\
 } while (0)
@@ -173,7 +173,7 @@ ATF_TC_BODY(seek_tests, tc)
 	    "fseeko(%s, %s) failed: %s",			\
 	    __STRING(offset), __STRING(whence), strerror(errno)); \
 	ATF_REQUIRE_MSG(ftello(fp) == (result),			\
-	    "fseeko(%s, %s) seeked to %jd rather than %s\n",	\
+	    "fseeko(%s, %s) seeked to %jd rather than %s",	\
 	    __STRING(offset), __STRING(whence),			\
 	    (intmax_t)ftello(fp), __STRING(result));		\
 } while (0)



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