aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/runtime/AbstractCommandTest.java
diff options
context:
space:
mode:
authorGravatar ccalvarin <ccalvarin@google.com>2017-10-26 23:41:08 +0200
committerGravatar Dmitry Lomov <dslomov@google.com>2017-10-27 16:29:34 +0200
commitb5158a9a677b149e04e844c40a01e9a9dde40783 (patch)
tree8253db60b454d720eba918751e5ec9f566f5051c /src/test/java/com/google/devtools/build/lib/runtime/AbstractCommandTest.java
parentc67101b6fa161b6083e313835deb96f6563202d4 (diff)
Split apart options that should only be set by the client from CommonCommandOptions.
client_env and default_override stand apart from the other common options. They can be very long, and should only be used by the environment setup. They should ideally not be passed by option at all, but in the RunRequest proto message, but for now, isolate them so that they don't clutter the common command options, which are passed all over the place. RELNOTES: None. PiperOrigin-RevId: 173592980
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/runtime/AbstractCommandTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/runtime/AbstractCommandTest.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/runtime/AbstractCommandTest.java b/src/test/java/com/google/devtools/build/lib/runtime/AbstractCommandTest.java
index 7ca65901ff..6b698d702b 100644
--- a/src/test/java/com/google/devtools/build/lib/runtime/AbstractCommandTest.java
+++ b/src/test/java/com/google/devtools/build/lib/runtime/AbstractCommandTest.java
@@ -138,6 +138,7 @@ public class AbstractCommandTest {
Collections.addAll(result, optionClasses);
result.add(BlazeCommandEventHandler.Options.class);
result.add(CommonCommandOptions.class);
+ result.add(ClientOptions.class);
result.add(SkylarkSemanticsOptions.class);
return result;
}