mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-04-25 02:50:24 -07:00
tests: be asdf 2.* friendly
Remove `:if-feature' in favour of #+/#-
This commit is contained in:
parent
e640ef1c2b
commit
8aa777416a
1 changed files with 14 additions and 7 deletions
|
|
@ -14,15 +14,21 @@
|
|||
((:file "ansi")
|
||||
(:file "mixed")
|
||||
(:file "compiler")
|
||||
(:file "embedding" :if-feature (:not :ecl-bytecmp))
|
||||
(:file "foreign-interface" :if-feature :ffi)
|
||||
(:file "metaobject-protocol" :if-feature :clos)
|
||||
(:file "multiprocessing" :if-feature :threads)))
|
||||
#-ecl-bytecmp
|
||||
(:file "embedding")
|
||||
#+ffi
|
||||
(:file "foreign-interface")
|
||||
#+clos
|
||||
(:file "metaobject-protocol")
|
||||
#+threads
|
||||
(:file "multiprocessing")))
|
||||
(:module features
|
||||
:default-component-class asdf:cl-source-file.lsp
|
||||
:components
|
||||
((:file "external-formats" :if-feature :unicode)
|
||||
(:file "ieee-fp" :if-feature :ieee-floating-point)))))
|
||||
(#+unicode
|
||||
(:file "external-formats")
|
||||
#+ieee-floating-point
|
||||
(:file "ieee-fp")))))
|
||||
|
||||
(asdf:defsystem #:ecl-tests/stress
|
||||
:serial t
|
||||
|
|
@ -31,7 +37,8 @@
|
|||
(:module stress
|
||||
:default-component-class asdf:cl-source-file.lsp
|
||||
:components
|
||||
((:file "multiprocessing" :if-feature :threads)))))
|
||||
(#+threads
|
||||
(:file "multiprocessing")))))
|
||||
|
||||
;;; General tests
|
||||
(asdf:defsystem #:ecl-tests/ansi)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue