diff options
author | 2022-07-19 10:34:35 +0100 | |
---|---|---|
committer | 2022-07-19 09:36:04 +0000 | |
commit | 9be8b3fea4dc69b112bb9e269c1cb4bc66fde885 (patch) | |
tree | b61dd3ff127f5ae5416cef9a72ba2842b9427f3a | |
parent | 16032a421a08fb6396de8e8f168a62fe29a0f7ad (diff) |
Increase RBE usage for ART tests to 10%
Test: m art-run-test-{host,target,jvm}-data
Change-Id: Id762595cb1687fb35c5eb90dbfe57fd4cbbcfc94
-rw-r--r-- | test/art_build_rules.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/art_build_rules.py b/test/art_build_rules.py index 5fc681b0cb..7d83bd483f 100644 --- a/test/art_build_rules.py +++ b/test/art_build_rules.py @@ -32,8 +32,8 @@ import zipfile from shutil import rmtree from os import remove -USE_RBE_FOR_JAVAC = 0 # Percentage of tests that can use RBE (between 0 and 100) -USE_RBE_FOR_D8 = 0 # Percentage of tests that can use RBE (between 0 and 100) +USE_RBE_FOR_JAVAC = 10 # Percentage of tests that can use RBE (between 0 and 100) +USE_RBE_FOR_D8 = 10 # Percentage of tests that can use RBE (between 0 and 100) def rm(*patterns): for pattern in patterns: |