Remove UseValidationsForGoTests.

Whenever it was called, it returned true.

Test: Presubmits.
Change-Id: Iabe5a99b8363771d06b200d4641d9ce477ba5b6e
This commit is contained in:
Lukacs T. Berki 2021-09-08 15:32:52 +02:00
parent 5d5ed5fc6b
commit d9d298c760
2 changed files with 2 additions and 21 deletions

View file

@ -466,19 +466,11 @@ func (g *goBinary) GenerateBuildActions(ctx blueprint.ModuleContext) {
Optional: true,
})
var orderOnlyDeps, validationDeps []string
if ctx.Config().(BootstrapConfig).UseValidationsForGoTests() {
validationDeps = testDeps
} else {
orderOnlyDeps = testDeps
}
ctx.Build(pctx, blueprint.BuildParams{
Rule: cp,
Outputs: []string{g.installPath},
Inputs: []string{aoutFile},
OrderOnly: orderOnlyDeps,
Validations: validationDeps,
Validations: testDeps,
Optional: !g.properties.Default,
})
}
@ -606,19 +598,11 @@ func buildGoTest(ctx blueprint.ModuleContext, testRoot, testPkgArchive,
Optional: true,
})
var orderOnlyDeps, validationDeps []string
if ctx.Config().(BootstrapConfig).UseValidationsForGoTests() {
validationDeps = testDeps
} else {
orderOnlyDeps = testDeps
}
ctx.Build(pctx, blueprint.BuildParams{
Rule: test,
Outputs: []string{testPassed},
Inputs: []string{testFile},
OrderOnly: orderOnlyDeps,
Validations: validationDeps,
Validations: testDeps,
Args: map[string]string{
"pkg": pkgPath,
"pkgSrcDir": filepath.Dir(testFiles[0]),

View file

@ -92,9 +92,6 @@ type BootstrapConfig interface {
// Whether to run tests for Go code
RunGoTests() bool
// Whether to use Ninja validations for running Go tests
UseValidationsForGoTests() bool
Subninjas() []string
PrimaryBuilderInvocations() []PrimaryBuilderInvocation
}