diff options
author | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-09-03 00:02:31 -0500 |
---|---|---|
committer | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-09-03 00:02:31 -0500 |
commit | 287d029975b7718109f81b480079f375f7d8700a (patch) | |
tree | 2324f902ebc59ffda5afa2e7506e3fa0ac9b51b3 /adapters/gtest/config.go | |
parent | d078f6dc10eb265a5d88cd96adf86173d6d3ba2e (diff) | |
download | planr-287d029975b7718109f81b480079f375f7d8700a.tar.xz planr-287d029975b7718109f81b480079f375f7d8700a.zip |
Add clean option and fix issue with dir propegation
Diffstat (limited to 'adapters/gtest/config.go')
-rw-r--r-- | adapters/gtest/config.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/adapters/gtest/config.go b/adapters/gtest/config.go index 4f8735f..4105932 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 } } |