-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from brown/fixes-for-quicklisp
Fixes for quicklisp
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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]>" | ||
|
@@ -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* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters