aboutsummaryrefslogtreecommitdiff
path: root/adapters/gtest/config.go
diff options
context:
space:
mode:
authorFurkan Sahin <furkan-dev@proton.me>2021-09-03 00:02:31 -0500
committerFurkan Sahin <furkan-dev@proton.me>2021-09-03 00:02:31 -0500
commit571abf917bb3a6aa7ac7dd40969ed59ce84d78db (patch)
treee148102ade519928ede6552724955cf7696f8afa /adapters/gtest/config.go
parent2af7117891cdb67758219a7075f39c05dc02f3f5 (diff)
Add clean option and fix issue with dir propegation
Diffstat (limited to 'adapters/gtest/config.go')
-rw-r--r--adapters/gtest/config.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/adapters/gtest/config.go b/adapters/gtest/config.go
index bf5c9f2..173809d 100644
--- a/adapters/gtest/config.go
+++ b/adapters/gtest/config.go
@@ -12,9 +12,7 @@ type GtestDefaults struct {
Name *string
Suite *string
Testfile *string
- Test_root *string
Srcs *[]string
- Srcs_root *string
}
func (child *GtestDefaults) Inherit(p interface{}) {
@@ -23,9 +21,7 @@ func (child *GtestDefaults) Inherit(p interface{}) {
if(child.Name == nil) { child.Name = parent.Name }
if(child.Suite == nil) { child.Suite = parent.Suite }
if(child.Testfile == nil) { child.Testfile = parent.Testfile }
- if(child.Test_root == nil) { child.Test_root = parent.Test_root }
if(child.Srcs == nil) { child.Srcs = parent.Srcs }
- if(child.Srcs_root == nil) { child.Srcs_root = parent.Srcs_root }
}