diff options
author | 2022-11-08 14:38:25 +0000 | |
---|---|---|
committer | 2022-11-08 17:48:04 +0000 | |
commit | 52ab1e9d33aa1eeb00628c9a6df15f021e55b976 (patch) | |
tree | 506a2270f45c214e02313634390cb22199bd941b | |
parent | f9613590413e2377f23182790cc7e2b67f2d4198 (diff) |
Disable libcore.highmemorytest tests on fugu
Bug: 258173036
Test: arts/tools/run-libcore-tests.sh
Change-Id: Ib3e8cda496281650dad43ae33c5354118fa7316a
-rwxr-xr-x | tools/run-libcore-tests.py | 4 |
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): |