From 930dcfbb0ddd6f38824c2ae775ba32e6b0312857 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Fri, 8 Dec 2023 13:10:36 +0100 Subject: TestFileHoleCopy: improve error msg Relates-to: https://github.com/rfjakob/gocryptfs/issues/812 --- tests/plaintextnames/file_holes_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/plaintextnames/file_holes_test.go') diff --git a/tests/plaintextnames/file_holes_test.go b/tests/plaintextnames/file_holes_test.go index a17597a..f4dfad9 100644 --- a/tests/plaintextnames/file_holes_test.go +++ b/tests/plaintextnames/file_holes_test.go @@ -92,7 +92,7 @@ func doTestFileHoleCopy(t *testing.T, name string, writeOffsets []int64) { // (looking at "filefrag -v", it seems like ext4 needs 4kB extra once // you have >=4 extents) if st.Blocks != st0.Blocks && st.Blocks != st0.Blocks-8 && st.Blocks != st0.Blocks+8 { - t.Errorf("size changed: st0.Blocks=%d st%d.Blocks=%d", st0.Blocks, i, st.Blocks) + t.Errorf("error: size changed: st0.Blocks=%d st%d.Blocks=%d", st0.Blocks, i, st.Blocks) } } @@ -123,7 +123,7 @@ func doTestFileHoleCopy(t *testing.T, name string, writeOffsets []int64) { } } -// TestFileHoleCopy creates a sparse times, copies it a few times, and check if +// TestFileHoleCopy creates a sparse file, copies it a few times, and checks if // the copies are the same (including the location of holes and data sections). // // The test runs with -plaintextnames because that makes it easier to manipulate -- cgit v1.2.3