File tree 1 file changed +6
-3
lines changed
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ def main():
67
67
68
68
args = parse_args ()
69
69
instances = [NEW_INSTANCE , OLD_INSTANCE ]
70
- configs = ['debug' , 'wmo-onone' , 'release' ]
70
+ configs = ['debug' , 'debug-opt' , ' wmo-onone' , 'release' ]
71
71
72
72
for instance in instances :
73
73
workspace = get_workspace_for_instance (instance , args )
@@ -217,11 +217,14 @@ def get_stats_dir(instance, variant):
217
217
218
218
219
219
def get_actual_config_and_flags (config , stats ):
220
- flags = ("-j 1 -num-threads 1 - stats-output-dir '%s'" % stats )
221
- # Handle wmo-onone as a pseudo-config
220
+ flags = ("-stats-output-dir '%s'" % stats )
221
+ # Handle as a pseudo-configs
222
222
if config == 'wmo-onone' :
223
223
flags += ' -wmo -Onone '
224
224
config = 'release'
225
+ elif config == 'debug-opt' :
226
+ flags += ' -O '
227
+ config = 'debug'
225
228
return (config , flags )
226
229
227
230
You can’t perform that action at this time.
0 commit comments