svn commit: r267004 - head/tools/regression/lib/libc/stdio

Pietro Cerutti gahr at FreeBSD.org
Tue Jun 3 07:11:22 UTC 2014


Author: gahr (ports committer)
Date: Tue Jun  3 07:11:22 2014
New Revision: 267004
URL: http://svnweb.freebsd.org/changeset/base/267004

Log:
  - Use strlen instead of hardcoding a number
  - Terminate a sentence with a period
  
  Approved by:	cognet

Modified:
  head/tools/regression/lib/libc/stdio/test-fmemopen.c

Modified: head/tools/regression/lib/libc/stdio/test-fmemopen.c
==============================================================================
--- head/tools/regression/lib/libc/stdio/test-fmemopen.c	Tue Jun  3 06:56:54 2014	(r267003)
+++ head/tools/regression/lib/libc/stdio/test-fmemopen.c	Tue Jun  3 07:11:22 2014	(r267004)
@@ -268,7 +268,7 @@ test_append_binary_pos()
 	 */
 	char buf[] = "Hello";
 	fp = fmemopen(buf, sizeof(buf), "ab+");
-	assert(ftell(fp) == 5);
+	assert(ftell(fp) == strlen(buf));
 	fclose(fp);
 }
 
@@ -276,7 +276,7 @@ void
 test_size_0()
 {
 	/*
-	 * POSIX mandates that we return EINVAL if size is 0
+	 * POSIX mandates that we return EINVAL if size is 0.
 	 */
 
 	FILE *fp;


More information about the svn-src-head mailing list