This commit is contained in:
Kartik Agaram 2018-09-21 15:04:28 -07:00
parent b2fe939a2f
commit 7f542fa01b
3 changed files with 3 additions and 3 deletions

View File

@ -180,7 +180,7 @@ bool Dump_trace = false; // if set, print trace lines to screen
string Dump_label = ""; // if set, print trace lines matching a single label to screen
:(before "End Reset")
Hide_errors = false;
Dump_trace = false;
Dump_trace = false; // toggle this to print traces to screen as they are emitted
Dump_label = "";
:(before "End Includes")

View File

@ -183,7 +183,7 @@ string Dump_label = ""; // if set, print trace lines matching a single label to
:(before "End Reset")
Hide_errors = false;
Hide_warnings = false;
Dump_trace = false;
Dump_trace = false; // toggle this to print traces to screen as they are emitted
Dump_label = "";
//: Never dump warnings in scenarios
:(before "End Test Setup")

View File

@ -179,7 +179,7 @@ bool Dump_trace = false; // if set, print trace lines to screen
string Dump_label = ""; // if set, print trace lines matching a single label to screen
:(before "End Reset")
Hide_errors = false;
Dump_trace = false;
Dump_trace = false; // toggle this to print traces to screen as they are emitted
Dump_label = "";
:(before "End Includes")