From f43c2125ededff8ff8710dcc042a89d5e95ce243 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sat, 11 Jul 2015 00:55:01 -0700 Subject: 1759 --- 081run_interactive.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to '081run_interactive.cc') diff --git a/081run_interactive.cc b/081run_interactive.cc index 76a7e2f4..179ab218 100644 --- a/081run_interactive.cc +++ b/081run_interactive.cc @@ -51,6 +51,10 @@ bool run_interactive(long long int address) { if (command.empty()) return false; Recipe.erase(Recipe_ordinal["interactive"]); Hide_warnings = true; + if (!Trace_stream) { + Trace_file = ""; // if there wasn't already a stream we don't want to save it + Trace_stream = new trace_stream; + } // call run(string) but without the scheduling load("recipe interactive [\n"+command+"\n]\n"); transform_all(); -- cgit 1.4.1-2-gfad0 Soul of a tiny new machine. More thorough tests → More comprehensible and rewrite-friendly software → More resilient society.Kartik K. Agaram <vc@akkartik.com>
about summary refs log blame commit diff stats
path: root/051scenario_test.mu
blob: 88085e9bda02e8ac0e1fdf67e89ae835893a2d97 (plain) (tree)
1
2
3
4
5
6