8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8872840 commit c98d159Copy full SHA for c98d159
tools/test.py
@@ -709,7 +709,10 @@ def GetConfiguration(self, context):
709
(file, pathname, description) = imp.find_module('testcfg', [ self.path ])
710
module = imp.load_module('testcfg', file, pathname, description)
711
self.config = module.GetConfiguration(context, self.path)
712
- self.config.additional_flags = context.node_args
+ if hasattr(self.config, 'additional_flags'):
713
+ self.config.additional_flags += context.node_args
714
+ else:
715
+ self.config.additional_flags = context.node_args
716
finally:
717
if file:
718
file.close()
0 commit comments