Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion coalton.asd
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
(:file "ordmap")
(:file "seq")
(:file "system")
(:file "stream")
(:file "file")
(:file "prelude")))

Expand Down Expand Up @@ -238,7 +239,8 @@
#:coalton/testing
#:fiasco
#:quil-coalton/tests
#:thih-coalton/tests)
#:thih-coalton/tests
#:flexi-streams)
:perform (asdf:test-op (o s)
(unless (symbol-call :coalton-tests :run-coalton-tests)
(error "Tests failed")))
Expand Down Expand Up @@ -292,6 +294,7 @@
(:file "inliner-tests")
(:file "inliner-tests-1") ; must come after inliner-tests
(:file "deriver-tests")
(:file "stream-tests")
(:file "file-tests")
(:file "experimental-tests")
(:file "exceptions")
Expand Down
1 change: 1 addition & 0 deletions library/prelude.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@
(#:optionalt #:coalton-library/monad/optionalt)
(#:iter #:coalton-library/iterator)
(#:sys #:coalton-library/system)
(#:stream #:coalton-library/stream)
(#:file #:coalton-library/file)
(#:experimental #:coalton-library/experimental)
(#:loops #:coalton-library/experimental/loops)))
Loading