mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-09-11 15:09:32 +00:00
1cd8c11cda
archive/zip, encoding/xml, and index/suffixarray use most of the time of make tinygo-test on every platform. Almost all of it is in a few tests that Go marks as long running. For archive/zip, TestZip64LargeDirectory and TestZip64WriterCDGoldens give 89% of the time. Run these three packages with -short. That omits 9 tests of 143 and keeps the rest. index/suffixarray omits none, because those tests make their input smaller instead of stopping. The set of packages tested does not change. Related to #5659