diff options
author | David Robillard <d@drobilla.net> | 2012-12-26 01:00:10 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2012-12-26 01:00:10 +0000 |
commit | 9d70db157eb9458f6716eacf24752fcfbb205fcb (patch) | |
tree | 203ff3cc1909ff5d471ea14e304289660a28565c /wscript | |
parent | c80b61512a905e46e52f43e01c531a3ac4b8aeb5 (diff) | |
download | resp-9d70db157eb9458f6716eacf24752fcfbb205fcb.tar.gz resp-9d70db157eb9458f6716eacf24752fcfbb205fcb.tar.bz2 resp-9d70db157eb9458f6716eacf24752fcfbb205fcb.zip |
Add cond macro test.
git-svn-id: http://svn.drobilla.net/resp/trunk@448 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -114,8 +114,11 @@ def test(ctx): # Closures run_test('./test/closure.scm', '6 : Int') run_test('./test/noargs.scm', '6 : Int') + + # Derived expressions run_test('./test/let.scm', '42 : Int') - + run_test('./test/cond.scm', '2.00000 : Float') + # Algebraic data types run_test('./test/match.scm', '12.0000 : Float') |