diff options
| author | Joel Martin <github@martintribe.org> | 2015-03-02 13:46:30 -0600 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2015-03-02 13:46:30 -0600 |
| commit | 992543a7229e03ea6d60c53dfec07a8c4cc18ee7 (patch) | |
| tree | e7fb6abd6ce3bdf0878ad8a5d343cf9bfcd20af8 | |
| parent | 9a3835358a4c2fa0cbc9e5c290b0cdd10394e715 (diff) | |
| download | mal-992543a7229e03ea6d60c53dfec07a8c4cc18ee7.tar.gz mal-992543a7229e03ea6d60c53dfec07a8c4cc18ee7.zip | |
Various: stepA test fixes/ignores.
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | clojure/project.clj | 2 | ||||
| -rw-r--r-- | clojure/src/stepA_mal.clj | 2 | ||||
| -rw-r--r-- | make/tests/stepA_mal.mal | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -43,7 +43,7 @@ EXCLUDE_TESTS += test^ocaml^step5 # test completes, even at 1,000,000 EXCLUDE_TESTS += test^cs^stepA test^go^stepA test^haskell^stepA \ test^java^stepA test^mal^stepA test^mal^step0 \ test^php^stepA test^ps^stepA test^python^stepA \ - test^ruby^stepA + test^ruby^stepA test^rust^stepA test^vb^stepA EXCLUDE_PERFS = perf^mal # TODO: fix this diff --git a/clojure/project.clj b/clojure/project.clj index 3d7ff2e..447d643 100644 --- a/clojure/project.clj +++ b/clojure/project.clj @@ -19,7 +19,7 @@ :step7 {:main step7-quote} :step8 {:main step8-macros} :step9 {:main step9-try} - :stepA {:main stepA-interop}} + :stepA {:main stepA-mal}} :main stepA-more) diff --git a/clojure/src/stepA_mal.clj b/clojure/src/stepA_mal.clj index 6ed9964..ce289b6 100644 --- a/clojure/src/stepA_mal.clj +++ b/clojure/src/stepA_mal.clj @@ -1,4 +1,4 @@ -(ns stepA-interop +(ns stepA-mal (:refer-clojure :exclude [macroexpand]) (:require [clojure.repl] [readline] diff --git a/make/tests/stepA_mal.mal b/make/tests/stepA_mal.mal index 9b1a2f9..768a929 100644 --- a/make/tests/stepA_mal.mal +++ b/make/tests/stepA_mal.mal @@ -14,6 +14,6 @@ (make* "$(foreach v,a b c,X$(v)Y)") ;=>"XaY XbY XcY" -(read-string (make* "($(foreach v,1 2 3,$(call gmsl_plus,1,$(v))))")) +(read-string (make* "($(foreach v,1 2 3,$(call int_add,1,$(v))))")) ;=>(2 3 4) |
