Skip to content

Commit 30f4c1e

Browse files
authored
Fix crash in runtest when build_tool_options is not set (#27)
1 parent e80247a commit 30f4c1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lnt/tests/test_suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1169,7 +1169,7 @@ def diagnose(self):
11691169
@click.option("--use-make", "make", metavar="PATH",
11701170
type=click.UNPROCESSED,
11711171
help="Path to the build system tool [make/ninja/...]")
1172-
@click.option("--build-tool-options",
1172+
@click.option("--build-tool-options", default="",
11731173
help="Options to pass to the build system tool",
11741174
type=click.UNPROCESSED)
11751175
@click.option("--use-lit", "lit", metavar="PATH", type=click.UNPROCESSED,

0 commit comments

Comments
 (0)