aboutsummaryrefslogtreecommitdiff
path: root/tests/reverse/inomap_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2024-05-05 22:42:47 +0200
committerJakob Unterwurzacher2024-05-05 22:42:47 +0200
commitbbfbf37bd73f4aac333c7a65f80d5d977a548e20 (patch)
treec4d29a36819048959c3271cd27ef516ab2eb6420 /tests/reverse/inomap_test.go
parent5a2d4614ed75d4b32e0f45e93a225f8e1b7350c9 (diff)
tests: reverse: deduplicate findInum / findIno
Diffstat (limited to 'tests/reverse/inomap_test.go')
-rw-r--r--tests/reverse/inomap_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/reverse/inomap_test.go b/tests/reverse/inomap_test.go
index a79ddd2..aadb782 100644
--- a/tests/reverse/inomap_test.go
+++ b/tests/reverse/inomap_test.go
@@ -2,6 +2,7 @@ package reverse_test
import (
"bytes"
+ "log"
"os"
"strings"
"syscall"
@@ -30,6 +31,7 @@ func findIno(dir string, ino uint64) string {
return entry
}
}
+ log.Panicf("ino %d not found", ino)
return ""
}