about summary refs log tree commit diff stats
path: root/020run.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-07 13:54:49 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-07 13:54:49 -0800
commitcb0060ee0f88149968a8f2b0bbf617c88ea46753 (patch)
treee40cdd6265c0661eae743b2cc877bd287fe07162 /020run.cc
parentd71d3b4aaa995681a20207d72cf3b6ac9c3d72c0 (diff)
downloadmu-cb0060ee0f88149968a8f2b0bbf617c88ea46753.tar.gz
2389
Now we're back to trying to rerunning idempotent transforms on
specialized recipes. Still doesn't work, but at least we don't see
different results depending on whether the trace is enabled inside the
test or right at the start. That got fixed by the more disciplined
insertion into maps, looks like.
Diffstat (limited to '020run.cc')
-rw-r--r--020run.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/020run.cc b/020run.cc
index fad6a5b0..1a822be1 100644
--- a/020run.cc
+++ b/020run.cc
@@ -134,8 +134,8 @@ inline bool routine::completed() const {
 
 //: Step 1: load all .mu files with numeric prefixes (in order)
 :(before "End Load Recipes")
-//? Trace_file = "interactive";
-//? START_TRACING_UNTIL_END_OF_SCOPE;
+Trace_file = "interactive";
+START_TRACING_UNTIL_END_OF_SCOPE;
 load_permanently("core.mu");
 transform_all();