projects
/
fiveam.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef75e7e
)
Don't inline package object in ECL (breaks compilation).
author
Maciek Pasternacki
<maciekp@japhy.fnord.org>
Sun, 10 Feb 2008 17:12:24 +0000
(18:12 +0100)
committer
Maciek Pasternacki
<maciekp@japhy.fnord.org>
Sun, 10 Feb 2008 17:12:24 +0000
(18:12 +0100)
src/test.lisp
patch
|
blob
|
history
diff --git
a/src/test.lisp
b/src/test.lisp
index
aacb11e
..
7de4941
100644
(file)
--- a/
src/test.lisp
+++ b/
src/test.lisp
@@
-69,7
+69,9
@@
If PROFILE is T profiling information will be collected as well."
`(progn
(setf (get-test ',name) (make-instance 'test-case
:name ',name
- :runtime-package ,*package*
+ :runtime-package
+ #-ecl ,*package*
+ #+ecl (find-package ,(package-name *package*))
:test-lambda
(lambda ()
,@ (ecase compile-at