From 6ae3245a0dc818a30561ca51190734071f9f4c01 Mon Sep 17 00:00:00 2001 From: Swung0x48 Date: Sun, 26 Jul 2026 19:23:05 -0400 Subject: [PATCH] [Test] (CTS): raise the no-output abort threshold - consecutive instant-crash cases are real progress once device liveness is confirmed --- tools/cts/scripts/run_cts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/cts/scripts/run_cts.py b/tools/cts/scripts/run_cts.py index df10d1a7..18d6e2c0 100644 --- a/tools/cts/scripts/run_cts.py +++ b/tools/cts/scripts/run_cts.py @@ -87,7 +87,7 @@ def main(): ap.add_argument("--device-dir", default="/data/local/tmp/mgcts") ap.add_argument("--surface", default="fbo", help="--deqp-surface-type value") ap.add_argument("--max-rounds", type=int, default=4000) - ap.add_argument("--max-empty-streak", type=int, default=8, + ap.add_argument("--max-empty-streak", type=int, default=64, help="abort after this many consecutive chunks that produce no log at all") ap.add_argument("--min-mem-kb", type=int, default=400000, help="pause when the device drops below this much available memory")