From owner-svn-src-stable-12@freebsd.org Sun Mar 22 15:03:10 2020 Return-Path: Delivered-To: svn-src-stable-12@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CD81026440F; Sun, 22 Mar 2020 15:03:10 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48lgk658CDz4bPt; Sun, 22 Mar 2020 15:03:10 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ABBC9273FE; Sun, 22 Mar 2020 15:03:10 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 02MF3ARD059328; Sun, 22 Mar 2020 15:03:10 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02MF3ArL059326; Sun, 22 Mar 2020 15:03:10 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <202003221503.02MF3ArL059326@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Sun, 22 Mar 2020 15:03:10 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org Subject: svn commit: r359212 - stable/12/tests/sys/fs/fusefs X-SVN-Group: stable-12 X-SVN-Commit-Author: asomers X-SVN-Commit-Paths: stable/12/tests/sys/fs/fusefs X-SVN-Commit-Revision: 359212 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable-12@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for only the 12-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Mar 2020 15:03:10 -0000 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);