From e99d7affb0c128fa82722f9b3d79c99b5e5918cd Mon Sep 17 00:00:00 2001 From: Ophestra Date: Mon, 11 Aug 2025 02:52:32 +0900 Subject: container: use absolute for pathname This is simultaneously more efficient and less error-prone. This change caused minor API changes in multiple other packages. Signed-off-by: Ophestra --- internal/app/app_linux_test.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/app/app_linux_test.go') diff --git a/internal/app/app_linux_test.go b/internal/app/app_linux_test.go index 7d572b59..8b96cfba 100644 --- a/internal/app/app_linux_test.go +++ b/internal/app/app_linux_test.go @@ -11,6 +11,7 @@ import ( "hakurei.app/hst" "hakurei.app/internal/app" "hakurei.app/internal/app/state" + "hakurei.app/internal/hlog" "hakurei.app/internal/sys" "hakurei.app/system" ) @@ -36,6 +37,7 @@ func TestApp(t *testing.T) { ) if !t.Run("seal", func(t *testing.T) { if sa, err := a.Seal(tc.config); err != nil { + hlog.PrintBaseError(err, "got generic error:") t.Errorf("Seal: error = %v", err) return } else { -- cgit v1.3.1