diff options
author | Jakob Unterwurzacher | 2021-08-20 17:06:18 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2021-08-20 17:06:18 +0200 |
commit | fbccb160438aba6f1e16b26a982122c726afee1a (patch) | |
tree | 1faac5ad3587a302fff40a8354382cda21823f3a /tests/reverse/inomap_test.go | |
parent | 14bf80301b4f3f1fb56f2f0b73de0dcc4aab5216 (diff) |
-deterministic-names: implement for reverse mode, too
Diffstat (limited to 'tests/reverse/inomap_test.go')
-rw-r--r-- | tests/reverse/inomap_test.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/reverse/inomap_test.go b/tests/reverse/inomap_test.go index e6fc525..d5544c8 100644 --- a/tests/reverse/inomap_test.go +++ b/tests/reverse/inomap_test.go @@ -130,8 +130,10 @@ func TestVirtualFileIno(t *testing.T) { } // Lower 48 bits should come from the backing file const mask = 0xffffffffffff - if origInos.parent&mask != cipherInos.diriv&mask { - t.Errorf("diriv ino mismatch: %#x vs %#x", origInos.parent, cipherInos.diriv) + if !deterministic_names { // no diriv files with -deterministic-names + if origInos.parent&mask != cipherInos.diriv&mask { + t.Errorf("diriv ino mismatch: %#x vs %#x", origInos.parent, cipherInos.diriv) + } } if origInos.child != cipherInos.child { t.Errorf("child ino mismatch: %d vs %d", origInos.child, cipherInos.child) |