summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Md Shahriar Hossain Sajib <sajibonly@google.com> 2022-05-20 06:58:48 +0000
committer Md Shahriar Hossain Sajib <sajibonly@google.com> 2022-05-20 08:02:50 +0000
commitd8b58663ff5dbd09027abdfecf12943c21540cd3 (patch)
tree5bd46f109533126ed8b576918bbe036d36402bb1
parentd2a9d88410d5c03a95bf79c09bbed7c106cb53ba (diff)
Revert "Turn gtest isolated true by default"
This reverts commit d2a9d88410d5c03a95bf79c09bbed7c106cb53ba. Reason for revert: DroidMonitor-triggered revert due to breakage https://android-build.googleplex.com/builds/quarterdeck?branch=git_master&target=aosp_bramble-userdebug&lkgb=8618360&lkbb=8620137&fkbb=8618374, bug b/233280626 Bug: 233280626 Change-Id: If56b36ea1c883415b90bd2153707cb69df29776e
-rw-r--r--cc/test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/test.go b/cc/test.go
index 2aadb854c..57035711e 100644
--- a/cc/test.go
+++ b/cc/test.go
@@ -259,7 +259,7 @@ func (test *testDecorator) gtest() bool {
func (test *testDecorator) isolated(ctx BaseModuleContext) bool {
if !ctx.Windows() {
- return BoolDefault(test.LinkerProperties.Isolated, true)
+ return BoolDefault(test.LinkerProperties.Isolated, false)
}
return BoolDefault(test.LinkerProperties.Isolated, false)
}