| commit | a0860042f8798f8129ac5cc336baed570888261f | [log] [tgz] |
|---|---|---|
| author | seancurran <seancurran@google.com> | Tue Oct 12 11:29:36 2021 -0700 |
| committer | Copybara-Service <copybara-worker@google.com> | Tue Oct 12 11:30:56 2021 -0700 |
| tree | 41b5f56ebd4067a664db64b54e115a97e87ea2cd | |
| parent | a74d777236dbea9b30da7f2cb10f67f3085ce2ed [diff] |
Add method to add a `List` of options in `BuildIntegrationTestCase`. PiperOrigin-RevId: 402613497
diff --git a/src/test/java/com/google/devtools/build/lib/buildtool/util/BuildIntegrationTestCase.java b/src/test/java/com/google/devtools/build/lib/buildtool/util/BuildIntegrationTestCase.java index 6caf0d8..f34baf9 100644 --- a/src/test/java/com/google/devtools/build/lib/buildtool/util/BuildIntegrationTestCase.java +++ b/src/test/java/com/google/devtools/build/lib/buildtool/util/BuildIntegrationTestCase.java
@@ -517,6 +517,10 @@ runtimeWrapper.addOptions(args); } + protected void addOptions(List<String> args) { + runtimeWrapper.addOptions(args); + } + protected void addStarlarkOption(String label, Object value) { runtimeWrapper.addStarlarkOption(label, value); }