Blob Blame History Raw
From 85a4d526d5109bbd4ca2f56fa00fd1d9fccfe065 Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Sun, 8 May 2022 04:18:05 -0400
Subject: [PATCH 05/11] Skip TestDirFS on 32-bit systems

Because Seek is not fully implemented there.

Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
---
 src/os/os_anyos_test.go | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/os/os_anyos_test.go b/src/os/os_anyos_test.go
index d8ac01c2..f84a4083 100644
--- a/src/os/os_anyos_test.go
+++ b/src/os/os_anyos_test.go
@@ -277,6 +277,10 @@ func TestDirFS(t *testing.T) {
 		t.Log("TODO: implement Readdir for Windows")
 		return
 	}
+	if runtime.GOARCH == "386" || runtime.GOARCH == "arm" {
+		t.Log("TODO: implement seek for 386 and arm")
+		return
+	}
 	if isWASI {
 		t.Log("TODO: allow foo/bar/. as synonym for path foo/bar on wasi?")
 		return
-- 
2.36.1