Dov Murik
Dov Murik
I think you're referring to the change in PR #532: before this fix, the two final (optional) tests of in `tests/stepA_mal.mal` failed: ``` ;; ;; Test that defining a macro...
wow, a first implementation in 'Z' ! Exciting!
Edit: thanks @ctzurcanu for the fix. Travis runs the tests in docker images which are built by @kanaka . When he gets to rebuild this image, it'll probably re-run the...
Here's my experience: On Windows 10 with Docker Desktop I have the Mal git repo cloned in `C:\personal\mal`; to run the tests I run the following docker command in a...
I'm looking at io.
For me `make DOCKERIZE=1 MAL_IMPL=io test^mal^step8` passes OK on master (03a2a696791970a464a9a757ef968d89436f5ca8). Has something changed? Since the travis build ran?
The following extra step4 tests find a bug in the Io implementation that eventually causes this self-hosting bug: ```diff diff --git a/tests/step4_if_fn_do.mal b/tests/step4_if_fn_do.mal index 0237d227..2d37b57d 100644 --- a/tests/step4_if_fn_do.mal +++ b/tests/step4_if_fn_do.mal...
From my local tests #425 should solve the self-hosting issue in io .
I modified the Ruby impl to include quasiquoting nesting level. Here's the modified `quasiquote` function code: ``` ruby def quasiquote(ast, nesting = 0) if not pair?(ast) return List.new [:quote, ast]...
@kanaka I think that before rushing to fix all impls, we should come up with all the test cases (and expected results) we want to cover, and decide if the...