about summary refs log tree commit diff stats
path: root/020run.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-07-14 15:51:15 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-07-14 15:54:39 -0700
commit094548498bfd351d2b2f7323e7757113654dbab1 (patch)
treebdbe503ab62dbff27f9a9aebf6634977098514fe /020run.cc
parent34c4850fa70366a4ea6a07a82f83be7c41ed9b4f (diff)
downloadmu-094548498bfd351d2b2f7323e7757113654dbab1.tar.gz
1782 - stop tracing anything but warnings inside edit
Speeds up edit.mu tests by 10x, and shrinks memory usage by 100x.
We need a more efficient implementation of traces, but we can keep going
for now.

We didn't really need to reclaim memory just yet, after all. Mu is
pretty memory-efficient.
Diffstat (limited to '020run.cc')
-rw-r--r--020run.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/020run.cc b/020run.cc
index 60a5c116..5969a27d 100644
--- a/020run.cc
+++ b/020run.cc
@@ -129,7 +129,7 @@ if (argc > 1) {
 if (!Run_tests) {
   setup();
 //?   Trace_file = "interactive"; //? 1
-  START_TRACING_UNTIL_END_OF_SCOPE;
+//?   START_TRACING_UNTIL_END_OF_SCOPE;
 //?   Trace_stream->dump_layer = "all"; //? 2
   transform_all();
   recipe_ordinal r = Recipe_ordinal[string("main")];