summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2022-08-03 11:05:19 +0100
committer David Srbecky <dsrbecky@google.com> 2022-08-09 14:58:55 +0000
commite9142f27e405580e76c077ac7d249373487d7753 (patch)
tree14971f12d77214a32ff5061f45d64518707ff58b
parent9c38a4e33e19b5846ba1126b5547449ab0a66f69 (diff)
Increase RBE usage for ART tests to 100%
Test: m art-run-test-{host,target,jvm}-data Change-Id: I3f1aa6dba34f68a5a29b8143634ef0780cccf66a
-rw-r--r--test/art_build_rules.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/art_build_rules.py b/test/art_build_rules.py
index ad05aff648..9d2da64678 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 = 40 # Percentage of tests that can use RBE (between 0 and 100)
-USE_RBE_FOR_D8 = 40 # Percentage of tests that can use RBE (between 0 and 100)
+USE_RBE_FOR_JAVAC = 100 # Percentage of tests that can use RBE (between 0 and 100)
+USE_RBE_FOR_D8 = 100 # Percentage of tests that can use RBE (between 0 and 100)
def rm(*patterns):
for pattern in patterns: