aboutsummaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-12-23 05:31:15 +0000
committerDavid Robillard <d@drobilla.net>2012-12-23 05:31:15 +0000
commit67319bf0410196787c753225f46057bc7c94beec (patch)
tree572e8f8989a903fde8be784de5dddbaa1938ecfe /wscript
parent0375a20786f1e6eba9d128889f700b22d447021c (diff)
downloadresp-67319bf0410196787c753225f46057bc7c94beec.tar.gz
resp-67319bf0410196787c753225f46057bc7c94beec.tar.bz2
resp-67319bf0410196787c753225f46057bc7c94beec.zip
Move towards standard Scheme syntax.
git-svn-id: http://svn.drobilla.net/resp/trunk@442 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'wscript')
-rw-r--r--wscript26
1 files changed, 13 insertions, 13 deletions
diff --git a/wscript b/wscript
index 4b2744d..ffd1da4 100644
--- a/wscript
+++ b/wscript
@@ -96,26 +96,26 @@ def test(ctx):
Logs.error("ERROR: %s" % prog)
# Basic lexical sanity
- run_test('./test/def.resp', '4 : Int')
- run_test('./test/deffn.resp', '3 : Int')
- run_test('./test/inlinefn.resp', '2 : Int')
- run_test('./test/nest.resp', '8 : Int')
+ run_test('./test/def.scm', '4 : Int')
+ run_test('./test/deffn.scm', '3 : Int')
+ run_test('./test/inlinefn.scm', '2 : Int')
+ run_test('./test/nest.scm', '8 : Int')
# Basic data types
- run_test('./test/string.resp', '"Hello, world!" : String')
- run_test('./test/tup.resp', '5 : Int')
+ run_test('./test/string.scm', '"Hello, world!" : String')
+ run_test('./test/tup.scm', '5 : Int')
# Recursive arithmetic functions
- run_test('./test/fac.resp', '720 : Int')
- run_test('./test/ack.resp', '8189 : Int')
+ run_test('./test/fac.scm', '720 : Int')
+ run_test('./test/ack.scm', '8189 : Int')
# Closures
- run_test('./test/closure.resp', '6 : Int')
- run_test('./test/let-over-fn.resp', '2 : Int')
- run_test('./test/let.resp', '5 : Int')
+ run_test('./test/closure.scm', '6 : Int')
+ run_test('./test/let-over-fn.scm', '2 : Int')
+ run_test('./test/let.scm', '5 : Int')
# Algebraic data types
- run_test('./test/match.resp', '12.0000 : Float')
+ run_test('./test/match.scm', '12.0000 : Float')
# Quoting
- run_test('./test/quote.resp', '4 : Int')
+ run_test('./test/quote.scm', '4 : Int')