summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Degros <fdegros@chromium.org>2022-02-22 03:43:30 +0000
committerCopybara-Service <copybara-worker@google.com>2022-02-21 19:51:54 -0800
commit79737a2a54d03cf67f405133d0ef3b1a45488b18 (patch)
tree613b5eb15be4156c7c60bbd256f5287aa56e8752
parentcd494c4016fcb3a6bca8ae617e0f754c4ac33f2b (diff)
downloadzlib-79737a2a54d03cf67f405133d0ef3b1a45488b18.tar.gz
[zip] Disable test ZipTest.BigFile on Android
Some Android waterfall and CQ try bots are running out of disk space when performing this test. BUG=chromium:1298347 TEST=autoninja -C out/Default zlib_unittests && out/Default/zlib_unittests Change-Id: I8405881c5fcde7815b983ef7497eeabc536dcf96 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3478997 Commit-Queue: François Degros <fdegros@chromium.org> Reviewed-by: Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/main@{#973617} NOKEYCHECK=True GitOrigin-RevId: 5bebdc45142ddbb621b027f0802208743d3ea93d
-rw-r--r--google/zip_unittest.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/google/zip_unittest.cc b/google/zip_unittest.cc
index 2254a3d..920fe49 100644
--- a/google/zip_unittest.cc
+++ b/google/zip_unittest.cc
@@ -918,9 +918,10 @@ TEST_F(ZipTest, NestedZip) {
//
// This test is too slow with TSAN.
// OS Fuchsia does not seem to support large files.
-// The trybot android-asan is running out of space when performing this test.
-#if defined(THREAD_SANITIZER) || defined(OS_FUCHSIA) || \
- (defined(OS_ANDROID) && defined(ADDRESS_SANITIZER))
+// Some Android waterfall and CQ try bots are running out of space when
+// performing this test (android-asan, android-11-x86-rel,
+// android-marshmallow-x86-rel-non-cq).
+#if defined(THREAD_SANITIZER) || defined(OS_FUCHSIA) || defined(OS_ANDROID)
TEST_F(ZipTest, DISABLED_BigFile) {
#else
TEST_F(ZipTest, BigFile) {