Skip to content

Commit

Permalink
Move test system to iolib.asd
Browse files Browse the repository at this point in the history
  • Loading branch information
sionescu committed Dec 15, 2019
1 parent d02704c commit 038c4e5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 24 deletions.
24 changes: 23 additions & 1 deletion iolib.asd
Original file line number Diff line number Diff line change
Expand Up @@ -248,4 +248,26 @@
:encoding :utf-8
:pathname "src/iolib/"
:components ((:file "pkgdcl"))
:in-order-to ((test-op (test-op :iolib.tests))))
:in-order-to ((test-op (test-op :iolib/tests))))

(defsystem :iolib/tests
:description "IOLib test suite."
:author "Luis Oliveira <[email protected]>"
:maintainer "Stelian Ionescu <[email protected]>"
:licence "MIT"
:version (:read-file-form "version.sexp")
:defsystem-depends-on (:iolib.base)
:depends-on (:fiveam :iolib :iolib/pathnames)
:around-compile "iolib/asdf:compile-wrapper"
:encoding :utf-8
:pathname "tests/"
:components
((:file "pkgdcl")
(:file "defsuites" :depends-on ("pkgdcl"))
(:file "base" :depends-on ("pkgdcl" "defsuites"))
(:file "file-paths-os" :depends-on ("pkgdcl" "defsuites")
:pathname #+unix "file-paths-unix")
(:file "events" :depends-on ("pkgdcl" "defsuites"))
(:file "streams" :depends-on ("pkgdcl" "defsuites"))
(:file "sockets" :depends-on ("pkgdcl" "defsuites")))
:perform (test-op (o c) (symbol-call :5am :run! :iolib)))
23 changes: 0 additions & 23 deletions iolib.tests.asd

This file was deleted.

0 comments on commit 038c4e5

Please sign in to comment.