svn commit: r309468 - stable/11/lib/libc/tests/stdio

Ngie Cooper ngie at FreeBSD.org
Sat Dec 3 02:48:57 UTC 2016


Author: ngie
Date: Sat Dec  3 02:48:55 2016
New Revision: 309468
URL: https://svnweb.freebsd.org/changeset/base/309468

Log:
  MFC r305921:
  
  Similar to r305920, remove spurious newlines from ATF_REQUIRE_MSG calls

Modified:
  stable/11/lib/libc/tests/stdio/open_memstream2_test.c
  stable/11/lib/libc/tests/stdio/open_wmemstream_test.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/lib/libc/tests/stdio/open_memstream2_test.c
==============================================================================
--- stable/11/lib/libc/tests/stdio/open_memstream2_test.c	Sat Dec  3 02:47:41 2016	(r309467)
+++ stable/11/lib/libc/tests/stdio/open_memstream2_test.c	Sat Dec  3 02:48:55 2016	(r309468)
@@ -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: stable/11/lib/libc/tests/stdio/open_wmemstream_test.c
==============================================================================
--- stable/11/lib/libc/tests/stdio/open_wmemstream_test.c	Sat Dec  3 02:47:41 2016	(r309467)
+++ stable/11/lib/libc/tests/stdio/open_wmemstream_test.c	Sat Dec  3 02:48:55 2016	(r309468)
@@ -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)


More information about the svn-src-stable-11 mailing list