shithub: mc

Download patch

ref: 2788f5eea5708ab8554bac41411543bef360389e
parent: 590dd41e3e1a90ce3986ab8db1e6490f597fba3f
author: Ori Bernstein <[email protected]>
date: Sat Dec 28 11:18:50 EST 2013

Expand patiter test a bit more.

--- a/test/patiter.myr
+++ b/test/patiter.myr
@@ -5,5 +5,8 @@
 	for (1,x) in [(1,2),(1,3),(2,4),(1,5)]
 		std.put("%i", x)
 	;;
+	for `std.Some v in [`std.None, `std.Some 1, `std.Some 2]
+		std.put("%i", v)
+	;;
 	std.put("\n")
 }
--- a/test/tests
+++ b/test/tests
@@ -56,7 +56,7 @@
 B nestfn	E	42
 # B closure	E	55      ## BUGGERED
 B loop		E	45
-B patiter	P	235
+B patiter	P	23512
 B condiftrue	E	7
 B condiffalse	E	9
 B condifrel	E	7