Similar to r305920, remove spurious newlines from ATF_REQUIRE_MSG calls

MFC after:	1 week
Sponsored by:	Dell EMC Isilon
This commit is contained in:
Enji Cooper 2016-09-18 06:00:07 +00:00
parent e57c1140a0
commit 9cd70b19ae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305921
2 changed files with 6 additions and 6 deletions

View File

@ -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)

View File

@ -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)