You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, using compile-test, the testrun executable will be compiled and then automatically run. However, there may be some cases when it's not desirable to immediately run, such as compiling test executable for use with debugger.
This can be implemented with a flag like --no-run. --build-only has also been suggested. As a point of posible confusion, compile-only subcommand already exists, which compiles but does not link.
Not sure further discussion is needed, but as an initial thought, checking for this flag can just be placed after the check for compile-test, compile-bench, etc, and just switch off the run. Let me know if there's other considerations.
The text was updated successfully, but these errors were encountered:
Currently, using
compile-test
, the testrun executable will be compiled and then automatically run. However, there may be some cases when it's not desirable to immediately run, such as compiling test executable for use with debugger.This can be implemented with a flag like
--no-run
.--build-only
has also been suggested. As a point of posible confusion,compile-only
subcommand already exists, which compiles but does not link.Not sure further discussion is needed, but as an initial thought, checking for this flag can just be placed after the check for
compile-test
,compile-bench
, etc, and just switch off the run. Let me know if there's other considerations.The text was updated successfully, but these errors were encountered: