aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/analysis
diff options
context:
space:
mode:
authorGravatar tomlu <tomlu@google.com>2017-08-04 17:41:54 +0200
committerGravatar Jakob Buchgraber <buchgr@google.com>2017-08-07 11:22:01 +0200
commit652046954c9479a91cb7f07014d805525091a0b1 (patch)
tree7724e65aeb42ec0c5dda3ad9f0cc07c18ede8206 /src/main/java/com/google/devtools/build/lib/analysis
parentce59d4dc6c7ea461c2945e80e508fa7b4d2c7c4e (diff)
Move most test options from BuildConfiguration to TestConfiguration.
--test_env isn't moved in this CL since it's exposed to Skylark via BuildConfiguration, making it a somewhat riskier refactor. PiperOrigin-RevId: 164266168
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/analysis')
-rw-r--r--src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java118
1 files changed, 0 insertions, 118 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java b/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
index a96156aa42..1a462df820 100644
--- a/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
+++ b/src/main/java/com/google/devtools/build/lib/analysis/config/BuildConfiguration.java
@@ -64,7 +64,6 @@ import com.google.devtools.build.lib.packages.RuleClass;
import com.google.devtools.build.lib.packages.RuleClassProvider;
import com.google.devtools.build.lib.packages.RuleTransitionFactory;
import com.google.devtools.build.lib.packages.Target;
-import com.google.devtools.build.lib.rules.test.TestActionBuilder;
import com.google.devtools.build.lib.skylarkinterface.SkylarkCallable;
import com.google.devtools.build.lib.skylarkinterface.SkylarkModule;
import com.google.devtools.build.lib.skylarkinterface.SkylarkModuleCategory;
@@ -767,75 +766,6 @@ public final class BuildConfiguration implements BuildEvent {
public boolean useLLVMCoverageMapFormat;
@Option(
- name = "cache_test_results",
- defaultValue = "auto",
- category = "testing",
- abbrev = 't', // it's useful to toggle this on/off quickly
- documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
- effectTags = {OptionEffectTag.UNKNOWN},
- help =
- "If set to 'auto', Bazel reruns a test if and only if: "
- + "(1) Bazel detects changes in the test or its dependencies, "
- + "(2) the test is marked as external, "
- + "(3) multiple test runs were requested with --runs_per_test, or"
- + "(4) the test previously failed. "
- + "If set to 'yes', Bazel caches all test results except for tests marked as "
- + "external. If set to 'no', Bazel does not cache any test results."
- )
- public TriState cacheTestResults;
-
- @Deprecated
- @Option(
- name = "test_result_expiration",
- defaultValue = "-1", // No expiration by defualt.
- category = "testing",
- documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
- effectTags = {OptionEffectTag.UNKNOWN},
- help = "This option is deprecated and has no effect."
- )
- public int testResultExpiration;
-
- @Option(
- name = "test_sharding_strategy",
- defaultValue = "explicit",
- category = "testing",
- converter = TestActionBuilder.ShardingStrategyConverter.class,
- documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
- effectTags = {OptionEffectTag.UNKNOWN},
- help =
- "Specify strategy for test sharding: "
- + "'explicit' to only use sharding if the 'shard_count' BUILD attribute is present. "
- + "'disabled' to never use test sharding. "
- + "'experimental_heuristic' to enable sharding on remotely executed tests without an "
- + "explicit 'shard_count' attribute which link in a supported framework. Considered "
- + "experimental."
- )
- public TestActionBuilder.TestShardingStrategy testShardingStrategy;
-
- @Option(
- name = "runs_per_test",
- allowMultiple = true,
- defaultValue = "1",
- category = "testing",
- converter = RunsPerTestConverter.class,
- documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
- effectTags = {OptionEffectTag.UNKNOWN},
- help =
- "Specifies number of times to run each test. If any of those attempts "
- + "fail for any reason, the whole test would be considered failed. "
- + "Normally the value specified is just an integer. Example: --runs_per_test=3 "
- + "will run all tests 3 times. "
- + "Alternate syntax: regex_filter@runs_per_test. Where runs_per_test stands for "
- + "an integer value and regex_filter stands "
- + "for a list of include and exclude regular expression patterns (Also see "
- + "--instrumentation_filter). Example: "
- + "--runs_per_test=//foo/.*,-//foo/bar/.*@3 runs all tests in //foo/ "
- + "except those under foo/bar three times. "
- + "This option can be passed multiple times. "
- )
- public List<PerLabelOptions> runsPerTest;
-
- @Option(
name = "build_runfile_links",
defaultValue = "true",
category = "strategy",
@@ -860,21 +790,6 @@ public final class BuildConfiguration implements BuildEvent {
public boolean legacyExternalRunfiles;
@Option(
- name = "test_arg",
- allowMultiple = true,
- defaultValue = "",
- category = "testing",
- documentationCategory = OptionDocumentationCategory.UNCATEGORIZED,
- effectTags = {OptionEffectTag.UNKNOWN},
- help =
- "Specifies additional options and arguments that should be passed to the test "
- + "executable. Can be used multiple times to specify several arguments. "
- + "If multiple tests are executed, each of them will receive identical arguments. "
- + "Used only by the 'bazel test' command."
- )
- public List<String> testArguments;
-
- @Option(
name = "check_fileset_dependencies_recursively",
defaultValue = "true",
category = "semantics",
@@ -1446,14 +1361,6 @@ public final class BuildConfiguration implements BuildEvent {
reporter.handle(Event.error(
"The internal '--output directory name' option cannot be used on the command line"));
}
-
- if (options.testShardingStrategy
- == TestActionBuilder.TestShardingStrategy.EXPERIMENTAL_HEURISTIC) {
- reporter.handle(Event.warn(
- "Heuristic sharding is intended as a one-off experimentation tool for determing the "
- + "benefit from sharding certain tests. Please don't keep this option in your "
- + ".blazerc or continuous build"));
- }
}
/**
@@ -2534,10 +2441,6 @@ public final class BuildConfiguration implements BuildEvent {
return options.skyframeNativeFileset;
}
- public List<String> getTestArguments() {
- return options.testArguments;
- }
-
/**
* Returns user-specified test environment variables and their values, as set by the --test_env
* options.
@@ -2565,10 +2468,6 @@ public final class BuildConfiguration implements BuildEvent {
return testEnv;
}
- public TriState cacheTestResults() {
- return options.cacheTestResults;
- }
-
public int getMinParamFileSize() {
return options.minParamFileSize;
}
@@ -2591,23 +2490,6 @@ public final class BuildConfiguration implements BuildEvent {
return actionsEnabled;
}
- public TestActionBuilder.TestShardingStrategy testShardingStrategy() {
- return options.testShardingStrategy;
- }
-
- /**
- * @return number of times the given test should run.
- * If the test doesn't match any of the filters, runs it once.
- */
- public int getRunsPerTestForLabel(Label label) {
- for (PerLabelOptions perLabelRuns : options.runsPerTest) {
- if (perLabelRuns.isIncluded(label)) {
- return Integer.parseInt(Iterables.getOnlyElement(perLabelRuns.getOptions()));
- }
- }
- return 1;
- }
-
public RunUnder getRunUnder() {
return options.runUnder;
}