Skip to content
Snippets Groups Projects
Commit 9be8ccbf authored by Raymond Toy's avatar Raymond Toy
Browse files

Add lisp-unit as a module. Use (require :lisp-unit) (or "lisp-unit")

to load lisp-unit.  This also allows the regression tests to be
self-contained so we don't have to have lisp-unit installed via
quicklisp or some other means.

Unlike asdf and defsystem, we do not provide a precompiled fasl.

code/module.lisp:
* Add defmodule forms for lisp-unit

contrib/load-lisp-unit.lisp:
* Module file to compile and load lisp-unit.
parent b289505a
No related branches found
No related tags found
No related merge requests found
......@@ -148,6 +148,13 @@
(defmodule "asdf"
"modules:asdf/asdf")
;; Lisp-unit
(defmodule :lisp-unit
"modules:lisp-unit/load-lisp-unit")
(defmodule "lisp-unit"
"modules:load-lisp-unit")
;; Allow user to specify "cmu-contribs" or :cmu-contribs.
(defmodule "cmu-contribs"
"modules:contrib")
......
;; Load lisp-unit
(require "asdf")
(load "modules:lisp-unit/lisp-unit.asd")
(asdf:oos 'asdf:load-op :lisp-unit)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment