about summary refs log tree commit diff stats
path: root/mu.arc.t
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2014-10-12 10:17:46 -0700
committerKartik K. Agaram <vc@akkartik.com>2014-10-12 10:17:46 -0700
commit3245570bc74382aabd1d84b5fae7cae91849df4d (patch)
treed0f4c5411b879a9c580aae6e73c2ccd4017a6297 /mu.arc.t
parent29bb9841e5bc2d6ade572f21ec3f5a7a3d8e82c1 (diff)
downloadmu-3245570bc74382aabd1d84b5fae7cae91849df4d.tar.gz
133 - handle missing args without error
Diffstat (limited to 'mu.arc.t')
-rw-r--r--mu.arc.t16
1 files changed, 15 insertions, 1 deletions
diff --git a/mu.arc.t b/mu.arc.t
index a4077c7a..814a9417 100644
--- a/mu.arc.t
+++ b/mu.arc.t
@@ -776,7 +776,21 @@
   (prn "F - 'arg' with index can access function call arguments out of order"))
 ;? (quit)
 
-; todo: test that too few args throws an error
+(reset)
+(new-trace "new-fn-arg-missing")
+(add-fns
+  '((test1
+      ((4 integer) <- arg)
+      ((5 integer) <- arg))
+    (main
+      (test1 (1 literal))
+    )))
+(run 'main)
+;? (prn memory*)
+(if (~iso memory* (obj 4 1))
+  (prn "F - missing 'arg' doesn't cause error"))
+;? (quit)
+
 ; how should errors be handled? will be unclear until we support concurrency and routine trees.
 
 (reset)