Skip to content

Commit

Permalink
Don't inline package object in ECL (breaks compilation).
Browse files Browse the repository at this point in the history
  • Loading branch information
Maciek Pasternacki committed Feb 10, 2008
1 parent ef75e7e commit 47e5436
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/test.lisp
Expand Up @@ -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
Expand Down

0 comments on commit 47e5436

Please sign in to comment.