From 78ebe4a59ffedee43bf57f27071ab3eac06b87c6 Mon Sep 17 00:00:00 2001 From: Roland Levillain Date: Tue, 26 Jan 2016 10:47:42 +0000 Subject: [PATCH] Disable run-tests causing occasional timeouts with CC. These tests sometimes time out on the concurrent collector configurations: - 004-ThreadStress - 496-checker-inlining-and-class-loader Disable them while we investigate. Bug: 26786154 Bug: 26786304 Bug: 12687968 Change-Id: I169766eac656cd1281a169337c2205a9592c32a1 --- test/Android.run-test.mk | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/test/Android.run-test.mk b/test/Android.run-test.mk index 36dd9f4ea..4500863b4 100644 --- a/test/Android.run-test.mk +++ b/test/Android.run-test.mk @@ -526,15 +526,18 @@ endif TEST_ART_BROKEN_OPTIMIZING_DEBUGGABLE_RUN_TESTS := -# Tests that should fail in the read barrier configuration with the default (Quick) compiler. +# Tests that should fail in the read barrier configuration with the default (Quick) compiler (AOT). +# 004: Occasional timeout: "TEST TIMED OUT!" (b/26786154). # 137: Quick has no support for read barriers and punts to the # interpreter, but CFI unwinding expects managed frames. # 554: Quick does not support JIT profiling. TEST_ART_BROKEN_DEFAULT_READ_BARRIER_RUN_TESTS := \ + 004-ThreadStress \ 137-cfi \ 554-jit-profile-file -# Tests that should fail in the read barrier configuration with the Optimizing compiler. +# Tests that should fail in the read barrier configuration with the Optimizing compiler (AOT). +# 004: Occasional timeout: "TEST TIMED OUT!" (b/26786154). # 484: Baker's fast path based read barrier compiler instrumentation generates code containing # more parallel moves on x86, thus some Checker assertions may fail. # 527: On ARM64, the read barrier instrumentation does not support the HArm64IntermediateAddress @@ -542,14 +545,19 @@ TEST_ART_BROKEN_DEFAULT_READ_BARRIER_RUN_TESTS := \ # 537: Expects an array copy to be intrinsified on x86-64, but calling-on-slowpath intrinsics are # not yet handled in the read barrier configuration. TEST_ART_BROKEN_OPTIMIZING_READ_BARRIER_RUN_TESTS := \ + 004-ThreadStress \ 484-checker-register-hints \ 527-checker-array-access-split \ 537-checker-arraycopy # Tests that should fail in the read barrier configuration with JIT. +# 004: Occasional timeout: "TEST TIMED OUT!" (b/26786154). # 141: Disabled because of intermittent failures on the ART Builtbot (b/25866001). +# 496: Occasional timeout: "Fault message: timeout: the monitored command dumped core" (b/26786304). TEST_ART_BROKEN_JIT_READ_BARRIER_RUN_TESTS := \ - 141-class-unload + 004-ThreadStress \ + 141-class-unload \ + 496-checker-inlining-and-class-loader ifeq ($(ART_USE_READ_BARRIER),true) ifneq (,$(filter default,$(COMPILER_TYPES))) -- 2.11.0