Add a CLI flag to test early crash

CURA-4895
This commit is contained in:
Lipu Fei 2018-01-30 16:04:11 +01:00 committed by Diego Prado Gesto
parent 6bbc18d51e
commit aefe24222f
2 changed files with 10 additions and 0 deletions

View file

@ -16,6 +16,12 @@ parser.add_argument('--debug',
default = False,
help = "Turn on the debug mode by setting this option."
)
parser.add_argument('--trigger-early-crash',
dest = 'trigger_early_crash',
action = 'store_true',
default = False,
help = "FOR TESTING ONLY. Trigger an early crash to show the crash dialog."
)
known_args = vars(parser.parse_known_args()[0])
if not known_args["debug"]: