Blob Blame History Raw
From 3a2a96984d51beb348a9003ae8221a935a626918 Mon Sep 17 00:00:00 2001
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date: Sun, 8 May 2022 18:39:26 -0400
Subject: [PATCH 7/8] Skip broken tests on i686

* compress/flate runs out of memory
* testing/fstest uses Seek, which is not implemented there

Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
---
 Makefile | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index dc388c21..359ec8f5 100644
--- a/Makefile
+++ b/Makefile
@@ -295,12 +295,15 @@ TEST_PACKAGES_FAST = \
 # Additional standard library packages that pass tests on individual platforms
 TEST_PACKAGES_LINUX := \
 	archive/zip \
-	compress/flate \
 	compress/lzw \
 	debug/dwarf \
 	debug/plan9obj \
-	io/fs \
+	io/fs
+ifneq ($(shell uname -p),i686)
+TEST_PACKAGES_LINUX += \
+	compress/flate \
 	testing/fstest
+endif
 
 TEST_PACKAGES_DARWIN := $(TEST_PACKAGES_LINUX)
 
-- 
2.36.1