about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-12-17 10:47:04 -0800
committerKartik K. Agaram <vc@akkartik.com>2014-12-17 10:47:04 -0800
commit68daae8c25828ebc8a96757ff6aa4600ce9e053c (patch)
treeb4c5846d7960d224d3109aecba25c39b3934bf07
parent9eedf0348d411fa5cb15b1873a7d1cb264afd092 (diff)
downloadmu-68daae8c25828ebc8a96757ff6aa4600ce9e053c.tar.gz
433
-rw-r--r--mu.arc2
-rw-r--r--mu.arc.t16
2 files changed, 9 insertions, 9 deletions
diff --git a/mu.arc b/mu.arc
index db5c25d5..185846f6 100644
--- a/mu.arc
+++ b/mu.arc
@@ -22,7 +22,7 @@
   (= traces* (queue)))
 
 (def new-trace (filename)
-  (prn "new-trace " filename)
+;?   (prn "new-trace " filename)
 ;?   )
   (= curr-trace-file* filename))
 
diff --git a/mu.arc.t b/mu.arc.t
index 18de91a8..3100d751 100644
--- a/mu.arc.t
+++ b/mu.arc.t
@@ -3322,7 +3322,7 @@
 ;; unit tests for various helpers
 
 ; tokenize-args
-(prn "tokenize-args")
+;? (prn "tokenize-args")
 (assert:iso '((a b) (c d))
             (tokenize-arg 'a:b/c:d))
 (assert:iso '((a b) (1 d))
@@ -3359,7 +3359,7 @@
                 })))
 
 ; absolutize
-(prn "absolutize")
+;? (prn "absolutize")
 (reset)
 (if (~iso '((4 integer)) (absolutize '((4 integer))))
   (prn "F - 'absolutize' works without routine"))
@@ -3376,7 +3376,7 @@
   (prn "F - 'absolutize' checks against default-scope bounds"))
 
 ; addr
-(prn "addr")
+;? (prn "addr")
 (reset)
 (= routine* nil)
 ;? (prn 111)
@@ -3426,7 +3426,7 @@
 ;? (quit)
 
 ; deref
-(prn "deref")
+;? (prn "deref")
 (reset)
 (= memory*.3 4)
 (if (~iso '((4 integer))
@@ -3446,7 +3446,7 @@
   (prn "F - 'deref' can be chained"))
 
 ; array-len
-(prn "array-len")
+;? (prn "array-len")
 (reset)
 (= memory*.35 4)
 (if (~is 4 (array-len '((35 integer-boolean-pair-array))))
@@ -3457,7 +3457,7 @@
 ;? (quit)
 
 ; sizeof
-(prn "sizeof")
+;? (prn "sizeof")
 (reset)
 ;? (prn 401)
 (if (~is 1 sizeof!integer)
@@ -3511,7 +3511,7 @@
 ;? (quit)
 
 ; m
-(prn "m")
+;? (prn "m")
 (reset)
 (if (~is 4 (m '((4 literal))))
   (prn "F - 'm' avoids reading memory for literals"))
@@ -3541,7 +3541,7 @@
   (prn "F - 'm' supports indirect access to arrays"))
 
 ; setm
-(prn "setm")
+;? (prn "setm")
 (reset)
 (setm '((4 integer)) 34)
 (if (~is 34 memory*.4)