File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -355,6 +355,10 @@ def configure():
355
355
assert 'PARALLEL_SUITE_EMCC_CORES' not in os .environ , 'use EMTEST_CORES rather than PARALLEL_SUITE_EMCC_CORES'
356
356
parallel_testsuite .NUM_CORES = os .environ .get ('EMTEST_CORES' ) or os .environ .get ('EMCC_CORES' )
357
357
358
+
359
+ def main (args ):
360
+ options = parse_args (args )
361
+
358
362
# Some options make sense being set in the environment, others not-so-much.
359
363
# TODO(sbc): eventually just make these command-line only.
360
364
if os .getenv ('EMTEST_SAVE_DIR' ):
@@ -364,10 +368,6 @@ def configure():
364
368
if os .getenv ('EMTEST_VERBOSE' ):
365
369
print ('Prefer --verbose over setting $EMTEST_VERBOSE' )
366
370
367
-
368
- def main (args ):
369
- options = parse_args (args )
370
-
371
371
# We set the environments variables here and then call configure,
372
372
# to apply them. This means the python's multiprocessing child
373
373
# process will see the same configuration even though they don't
You can’t perform that action at this time.
0 commit comments