summaryrefslogtreecommitdiff
path: root/tools/run-libcore-tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/run-libcore-tests.py')
-rwxr-xr-xtools/run-libcore-tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/run-libcore-tests.py b/tools/run-libcore-tests.py
index e1f08a14c1..19529ece45 100755
--- a/tools/run-libcore-tests.py
+++ b/tools/run-libcore-tests.py
@@ -396,7 +396,9 @@ def get_test_names():
if args.gcstress and args.debug:
test_names = list(filter(lambda x: x not in DISABLED_GCSTRESS_DEBUG_TESTS, test_names))
if not args.getrandom:
- test_names = list(filter(lambda x: x not in DISABLED_FUGU_TESTS, test_names))
+ # Disable libcore.highmemorytest due to limited ram on fugu. http://b/258173036
+ test_names = list(filter(lambda x: x not in DISABLED_FUGU_TESTS and
+ not x.startswith("libcore.highmemorytest"), test_names))
return test_names
def get_vogar_command(test_name):