Skip to content

Commit 90a038b

Browse files
authored
Merge pull request #112 from ax3l/fix-ftoolsParse
Fix: ftools needs .split()
2 parents 04d9a38 + 1b240f3 commit 90a038b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def load_params(args):
8787
elif opt == "emailTo":
8888
mysuite.emailTo = value.split(",")
8989
elif opt == "ftools":
90-
mysuite.ftools = value
90+
mysuite.ftools = value.split()
9191
elif opt == "extra_tools":
9292
mysuite.extra_tools = value
9393

regtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ def test_suite(argv):
772772

773773

774774
# get the number of levels for reporting
775-
if not test.run_as_script:
775+
if not test.run_as_script and "fboxinfo" in suite.tools:
776776

777777
prog = "{} -l {}".format(suite.tools["fboxinfo"], output_file)
778778
stdout0, _, rc = test_util.run(prog)

0 commit comments

Comments
 (0)