Skip to content

Commit

Permalink
Skip broken tests on i686
Browse files Browse the repository at this point in the history
* compress/flate runs out of memory
* testing/fstest uses Seek, which is not implemented there
  • Loading branch information
QuLogic committed May 26, 2022
1 parent 2bfc98c commit bfe265d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -295,13 +295,19 @@ 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/ioutil \
io/ioutil
ifneq ($(shell getconf LONG_BIT),32)
# Some tests are skipped on 32-bit because:
# compress/flate runs out of memory
# testing/fstest uses Seek, which is not implemented there
TEST_PACKAGES_LINUX += \
compress/flate \
testing/fstest
endif

TEST_PACKAGES_DARWIN := $(TEST_PACKAGES_LINUX)

Expand Down

0 comments on commit bfe265d

Please sign in to comment.