Add the flag --auto_output_filter=[none,all,packages,subpackages] to Bazel.

While compiler warnings and debugging output can be valuable, they can
also make your build log hard to read: Ever had the problem of spotting an error
in 150.000 lines of compiler warnings? Or do you only want to see warnings that
come from the code you're actually working on? Bazel now has a flag to help you
out: With the new flag --auto_output_filter=[none,all,packages,subpackages] you
can instruct Bazel to not print any warnings (--auto_output_filter=all), print
only warnings from the packages explicitly listed as targets on your
command-line (--auto_output_filter=packages) or from those packages and all
their subpackages (--auto_output_filter=subpackages). The flag
--auto_output_filter=none means "don't filter anything", thus results in all
warnings being printed (which is also Bazel's current default behavior). Output from failing commands will always be printed, no matter to which package it belongs.

RELNOTES: Bazel now supports hiding compiler warnings for targets that you're not explicitly building (see https://docs.bazel.build/versions/master/user-manual.html#flag--auto_output_filter).
PiperOrigin-RevId: 251419807
diff --git a/src/test/java/com/google/devtools/build/lib/testutil/TestConstants.java b/src/test/java/com/google/devtools/build/lib/testutil/TestConstants.java
index 1d0609e..a77b892 100644
--- a/src/test/java/com/google/devtools/build/lib/testutil/TestConstants.java
+++ b/src/test/java/com/google/devtools/build/lib/testutil/TestConstants.java
@@ -79,9 +79,11 @@
   public static final String TEST_RULE_CLASS_PROVIDER =
       "com.google.devtools.build.lib.bazel.rules.BazelRuleClassProvider";
   public static final String TEST_RULE_MODULE =
-        "com.google.devtools.build.lib.bazel.rules.BazelRulesModule";
+      "com.google.devtools.build.lib.bazel.rules.BazelRulesModule";
   public static final String TEST_REAL_UNIX_FILE_SYSTEM =
       "com.google.devtools.build.lib.unix.UnixFileSystem";
+  public static final String TEST_WORKSPACE_STATUS_MODULE =
+      "com.google.devtools.build.lib.bazel.BazelWorkspaceStatusModule";
 
   public static void processSkyframeExecutorForTesting(SkyframeExecutor skyframeExecutor) {}