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
You know how CTF will stop executing the script if the StartCfs instruction fails? It would be nice if there were a way to set other instructions to just exit the test if a particular instruction fails. For example, a lot of my scripts have instructions for "setting up" the test before it actually gets into the bulk of the test itself. I do not want the script to bother running if this correct set up does not happen. Is there any way I can tell the test to stop end exit with an error if these setup steps do not work?
There are two different implementations that I would be okay with:
Implement at the "test" level; that is, a new parameter at the level of the "case_number" and "instructions" fields. Then if any instruction in the test fails, it would abort executing the script.
Implement at the individual "instruction" level. Then this would be a new parameter at the level of the existing "wait" and "verify_timeout" instructions that can be specified for every instruction.
The text was updated successfully, but these errors were encountered:
You know how CTF will stop executing the script if the StartCfs instruction fails? It would be nice if there were a way to set other instructions to just exit the test if a particular instruction fails. For example, a lot of my scripts have instructions for "setting up" the test before it actually gets into the bulk of the test itself. I do not want the script to bother running if this correct set up does not happen. Is there any way I can tell the test to stop end exit with an error if these setup steps do not work?
There are two different implementations that I would be okay with:
The text was updated successfully, but these errors were encountered: