klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

test-all.k (874B)


      1 (load "tests/check.k")
      2 (load "tests/test-helpers.k")
      3 
      4 ;; (check-set-mode! check-mode-report)
      5 
      6 ;; TODO add applicative?/operative? for all cominers in all test files
      7 
      8 (load "tests/booleans.k")
      9 (load "tests/eq-equal.k")
     10 (load "tests/symbols.k")
     11 (load "tests/continuations.k")
     12 (load "tests/control.k")
     13 (load "tests/pairs-and-lists.k")
     14 (load "tests/pair-mutation.k")
     15 (load "tests/environments.k")
     16 (load "tests/environment-mutation.k")
     17 (load "tests/combiners.k")
     18 (load "tests/encapsulations.k")
     19 (load "tests/promises.k")
     20 (load "tests/keyed-variables.k")
     21 (load "tests/numbers.k")
     22 (load "tests/strings.k")
     23 (load "tests/characters.k")
     24 (load "tests/ports.k")
     25 (load "tests/memory-ports.k")
     26 (load "tests/error.k")
     27 (load "tests/bytevectors.k")
     28 (load "tests/vectors.k")
     29 (load "tests/tables.k")
     30 (load "tests/system.k")
     31 (load "tests/keywords.k")
     32 (load "tests/libraries.k")
     33 
     34 (check-report)