diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-10 17:23:08 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-10 23:20:04 -0700 |
commit | db378f7b10765839502ffd8601045a5e4c6e225a (patch) | |
tree | 07a59b74e2a0c507b46fc7b0ac97a3fb5b6d0ac7 | |
parent | f00fc595cb7127727061e643090c8c38ab727f85 (diff) | |
download | mu-db378f7b10765839502ffd8601045a5e4c6e225a.tar.gz |
881
-rw-r--r-- | mu.arc | 1 | ||||
-rw-r--r-- | mu.arc.t | 1 | ||||
-rw-r--r-- | trace.arc.t | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/mu.arc b/mu.arc index 2328197c..9bee1eb1 100644 --- a/mu.arc +++ b/mu.arc @@ -1,3 +1,4 @@ +(ero "initializing mu.. (takes ~4s)") ;; profiler (http://arclanguage.org/item?id=11556) ; Keeping this right on top as a reminder to profile before guessing at why my ; program is slow. diff --git a/mu.arc.t b/mu.arc.t index a74117a2..6c0464f9 100644 --- a/mu.arc.t +++ b/mu.arc.t @@ -114,6 +114,7 @@ ; this file on the scenarios the code cares about. (selective-load "mu.arc" section-level) +(ero "running tests in mu.ar.c.t (takes ~30s)") ;? (quit) (set allow-raw-addresses*) diff --git a/trace.arc.t b/trace.arc.t index cfe0f702..121d7db5 100644 --- a/trace.arc.t +++ b/trace.arc.t @@ -1,4 +1,5 @@ (selective-load "mu.arc" section-level) +(ero "running tests in trace.arc.t (takes ~10 mins)") (test-only-settings) (add-code:readfile "trace.mu") (freeze function*) |