mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
This commit contains the sb-simd contrib in its most recent form. The original sb-simd repository will be archived, and development of sb-simd will now be a part of the regular SBCL development. Thanks for everyone who made this work possible!
22 lines
536 B
Common Lisp
22 lines
536 B
Common Lisp
(defsystem "sb-simd-test-suite"
|
|
:description "The sb-simd test suite."
|
|
:author "Marco Heisig <marco.heisig@fau.de>"
|
|
:license "MIT"
|
|
|
|
:depends-on ("sb-simd")
|
|
|
|
:perform
|
|
(test-op (o c) (symbol-call '#:sb-simd-test-suite '#:run-test-suite))
|
|
|
|
:serial t
|
|
:components
|
|
((:file "packages")
|
|
(:file "numbers")
|
|
(:file "utilities")
|
|
(:file "test-suite")
|
|
(:file "test-arefs")
|
|
(:file "test-simple-simd-functions")
|
|
(:file "test-horizontal-functions")
|
|
(:file "test-hairy-simd-functions")
|
|
(:file "test-packages")))
|