From 728de28f334d101a3c7ed575a4346e3bbf4446fe Mon Sep 17 00:00:00 2001 From: Robert Norton Date: Mon, 2 Apr 2012 17:44:38 +0100 Subject: [PATCH] Disable the behaviour of automatically enabling tracing modes when entering the debugging as this results in unwanted tracing when running fuzz tests. Tracing can still be enabled explicitly on command line. --- src/old_main/emul.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/old_main/emul.cc b/src/old_main/emul.cc index 5a77214e..3deb74f7 100644 --- a/src/old_main/emul.cc +++ b/src/old_main/emul.cc @@ -872,8 +872,9 @@ void emul_run(struct emul *emul) old_quiet_mode = quiet_mode; old_show_trace_tree = emul->machines[0]->show_trace_tree; - emul->machines[0]->instruction_trace = 1; - emul->machines[0]->show_trace_tree = 1; +// Don't enable instruction/tree trace automatically when entering debugger. +// emul->machines[0]->instruction_trace = 1; +// emul->machines[0]->show_trace_tree = 1; quiet_mode = 0; single_step = SINGLE_STEPPING; }