File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 3636
3737config .add_section ('dirs' )
3838config .add_section ('log' )
39+ config .add_section ('tests' )
3940
4041parser = argparse .ArgumentParser ()
4142
4748parser .add_argument ('--tree-name' , help = 'the tree name to expect' )
4849parser .add_argument ('--result-dir' ,
4950 help = 'the directory where results will be generated' )
51+ parser .add_argument ('-d' , '--disable-test' , nargs = '+' ,
52+ help = 'disable test, can be specified multiple times' )
5053parser .add_argument ('--dbg-print-run' , help = 'print results of previous run' )
5154
5255
@@ -297,6 +300,11 @@ def main():
297300 tree_name = "unknown"
298301 print ("Tree name unknown" )
299302
303+ # Default settings for networking trees:
304+ if tree_name .startswith ('net' ):
305+ if not args .disable_test :
306+ config .set ('tests' , 'exclude' , 'patch/signed' )
307+
300308 print_series_info (series )
301309
302310 if args .dbg_print_run :
You can’t perform that action at this time.
0 commit comments