Merge "Revert "Turn gtest isolated true by default""

This commit is contained in:
Md Shahriar Hossain Sajib
2022-05-20 08:16:01 +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, true) return BoolDefault(test.LinkerProperties.Isolated, false)
} }
return BoolDefault(test.LinkerProperties.Isolated, false) return BoolDefault(test.LinkerProperties.Isolated, false)
} }