Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Jun 2014 07:11:22 +0000 (UTC)
From:      Pietro Cerutti <gahr@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r267004 - head/tools/regression/lib/libc/stdio
Message-ID:  <201406030711.s537BMCa003387@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



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