Skip to content

Commit

Permalink
Merge pull request #14 from brown/fixes-for-quicklisp
Browse files Browse the repository at this point in the history
Fixes for quicklisp
  • Loading branch information
kingcons authored Jan 24, 2024
2 parents e0f843c + ecad32d commit 46628d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 5 additions & 4 deletions cl-6502.asd
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
(:file "opcodes")
(:file "jit")
(:file "utils"))
:in-order-to ((test-op (test-op cl-6502-test))))
:in-order-to ((test-op (test-op cl-6502/test))))

(defsystem #:cl-6502-test
(defsystem #:cl-6502/test
:description "A test suite for cl-6502."
:license "BSD"
:author "Brit Butler <[email protected]>"
Expand All @@ -34,8 +34,9 @@
(:file "opcodes")
(:file "jit")
#+sbcl (:file "perf"))
:perform (test-op :after (op c)
(uiop:symbol-call :6502-tests 'run!)))
:perform (test-op (op c)
(uiop:symbol-call 'fiveam 'run!
(uiop:find-symbol* '6502-tests '6502-tests))))

(defpackage #:6502-conf (:export #:app-path))
(defvar 6502-conf::*basedir*
Expand Down
1 change: 0 additions & 1 deletion tests/perf.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
statistical profiler to observe performance while running the test suite."
(klaus-init)
(sb-sprof:with-profiling (:sample-interval 0.001
:alloc-interval 2
:max-samples 1000
:show-progress t
:report :graph
Expand Down

0 comments on commit 46628d6

Please sign in to comment.