diff options
| -rw-r--r-- | test/Android.run-test.mk | 2 | ||||
| -rw-r--r-- | test/knownfailures.json | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/test/Android.run-test.mk b/test/Android.run-test.mk index 95967b527c..b575d55bc2 100644 --- a/test/Android.run-test.mk +++ b/test/Android.run-test.mk @@ -368,6 +368,7 @@ TEST_ART_BROKEN_INTERPRETER_ACCESS_CHECK_TESTS := # Tests that are broken with GC stress. # * 137-cfi needs to unwind a second forked process. We're using a primitive sleep to wait till we # hope the second process got into the expected state. The slowness of gcstress makes this bad. +# * 152-dead-large-object requires a heap larger than what gcstress uses. # * 908-gc-start-finish expects GCs only to be run at clear points. The reduced heap size makes # this non-deterministic. Same for 913. # * 961-default-iface-resolution-gen and 964-default-iface-init-genare very long tests that often @@ -375,6 +376,7 @@ TEST_ART_BROKEN_INTERPRETER_ACCESS_CHECK_TESTS := # slows down allocations significantly which these tests do a lot. TEST_ART_BROKEN_GCSTRESS_RUN_TESTS := \ 137-cfi \ + 152-dead-large-object \ 154-gc-loop \ 908-gc-start-finish \ 913-heaps \ diff --git a/test/knownfailures.json b/test/knownfailures.json index 784f49c4b9..6caf7b0f36 100644 --- a/test/knownfailures.json +++ b/test/knownfailures.json @@ -106,6 +106,11 @@ "slowness of gcstress makes this bad."] }, { + "test": "152-dead-large-object", + "variant": "gcstress", + "description": ["152-dead-large-object requires a heap larger than what gcstress uses."] + }, + { "tests": ["908-gc-start-finish", "913-heaps"], "variant": "gcstress", |