svn commit: r359212 - stable/12/tests/sys/fs/fusefs

Alan Somers asomers at FreeBSD.org
Sun Mar 22 15:03:10 UTC 2020


Author: asomers
Date: Sun Mar 22 15:03:09 2020
New Revision: 359212
URL: https://svnweb.freebsd.org/changeset/base/359212

Log:
  MFC r358089, r358797
  
  r358089:
  [skip ci] delete obsolete comment in fusefs tests
  
  It should've been deleted by r349436
  
  r358797:
  [skip ci] fix typo in comment in the fusefs tests

Modified:
  stable/12/tests/sys/fs/fusefs/io.cc
  stable/12/tests/sys/fs/fusefs/notify.cc
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/tests/sys/fs/fusefs/io.cc
==============================================================================
--- stable/12/tests/sys/fs/fusefs/io.cc	Sun Mar 22 15:01:13 2020	(r359211)
+++ stable/12/tests/sys/fs/fusefs/io.cc	Sun Mar 22 15:03:09 2020	(r359212)
@@ -46,9 +46,6 @@ extern "C" {
 /* 
  * For testing I/O like fsx does, but deterministically and without a real
  * underlying file system
- *
- * TODO: after fusefs gains the options to select cache mode for each mount
- * point, run each of these tests for all cache modes.
  */
 
 using namespace testing;

Modified: stable/12/tests/sys/fs/fusefs/notify.cc
==============================================================================
--- stable/12/tests/sys/fs/fusefs/notify.cc	Sun Mar 22 15:01:13 2020	(r359211)
+++ stable/12/tests/sys/fs/fusefs/notify.cc	Sun Mar 22 15:03:09 2020	(r359212)
@@ -375,7 +375,7 @@ TEST_F(Notify, inval_inode_with_clean_cache)
 	pthread_join(th0, &thr0_value);
 	EXPECT_EQ(0, (intptr_t)thr0_value);
 
-	/* cache attributes were been purged; this will trigger a new GETATTR */
+	/* cache attributes were purged; this will trigger a new GETATTR */
 	ASSERT_EQ(0, stat(FULLPATH, &sb)) << strerror(errno);
 	EXPECT_EQ(uid, sb.st_uid);
 	EXPECT_EQ(size1, sb.st_size);


More information about the svn-src-all mailing list