Login
7 branches 0 tags
Ben (Win10) Added mingw32 and clang32 to GH CI c275295 3 years ago 488 Commits
nujel / tools / suite.nuj
#!/usr/bin/env nujel

[println "Entered SUITE.NUJ"]
[defun directory/read-relative [path]
       [map [directory/read path]
            [\ [α] [cat path "/" α]]]]
[for-each [directory/read-relative "tests/suite"] file/eval]
[println "Loaded all Tests"]

[if [tree/get repl/options :bytecoded]
    [exit [test-run-bytecode]]
    [exit [test-run]]]