sbcl.sbcl/contrib/sb-simd/test-suite/sb-simd-test-suite.asd
Marco Heisig 724690647b Merge sb-simd.
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!
2022-06-21 07:59:31 +02:00

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")))