Merge "Turn gtest isolated true by default"

This commit is contained in:
Julien Desprez
2022-05-19 20:38:45 +00:00
committed by Gerrit Code Review

View File

@@ -259,7 +259,7 @@ func (test *testDecorator) gtest() bool {
func (test *testDecorator) isolated(ctx BaseModuleContext) bool { func (test *testDecorator) isolated(ctx BaseModuleContext) bool {
if !ctx.Windows() { if !ctx.Windows() {
return BoolDefault(test.LinkerProperties.Isolated, false) return BoolDefault(test.LinkerProperties.Isolated, true)
} }
return BoolDefault(test.LinkerProperties.Isolated, false) return BoolDefault(test.LinkerProperties.Isolated, false)
} }