about summary refs log tree commit diff stats
path: root/003trace.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 /003trace.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 '003trace.cc')
-rw-r--r--003trace.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/003trace.cc b/003trace.cc
index 4a563fc6..fa333191 100644
--- a/003trace.cc
+++ b/003trace.cc
@@ -198,7 +198,7 @@ struct lease_tracer {
 
 #define START_TRACING_UNTIL_END_OF_SCOPE  lease_tracer leased_tracer;
 :(before "End Test Setup")
-START_TRACING_UNTIL_END_OF_SCOPE
+//? START_TRACING_UNTIL_END_OF_SCOPE
 
 :(before "End Includes")
 #define CHECK_TRACE_CONTENTS(...)  check_trace_contents(__FUNCTION__, __FILE__, __LINE__, __VA_ARGS__)