Skip to content

Commit 8abd13f

Browse files
committed
[Regression] Supply --no-build when running tests
1 parent ee15190 commit 8abd13f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

toolchain/mfc/build.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ def build_target(mfc, name: str, history: typing.List[str] = None):
105105
if history is None:
106106
history = []
107107

108+
if mfc.args["no_build"]:
109+
cons.print("--no-build specified, skipping...")
110+
cons.unindent()
111+
return
112+
108113
if name in history:
109114
cons.print("Already built, skipping...")
110115
cons.unindent()

0 commit comments

Comments
 (0)