Skip to content

Commit

Permalink
ASDF warning about subpackage vgplot-test fixed. Use vgplot/test inst…
Browse files Browse the repository at this point in the history
…ead.
  • Loading branch information
volkers committed May 26, 2022
1 parent 8b59cdb commit f162c82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
5 changes: 0 additions & 5 deletions package-test.lisp

This file was deleted.

13 changes: 10 additions & 3 deletions vgplot-test.lisp → test.lisp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
;;;; vgplot-test.lisp
;;;; test.lisp

#|
This is the test environment for vgplot, an interface to the gnuplot utility.
Expand All @@ -18,7 +18,14 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
|#

(in-package #:vgplot-test)
(in-package :cl-user)

(defpackage :vgplot/test
(:use :cl :lisp-unit :vgplot)
(:export :run))


(in-package #:vgplot/test)

(setq lisp-unit:*print-failures* t)

Expand Down Expand Up @@ -100,4 +107,4 @@
)

(defun run ()
(lisp-unit:run-tests :all :vgplot-test))
(lisp-unit:run-tests :all :vgplot/test))
5 changes: 2 additions & 3 deletions vgplot.asd
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@
(:file "vgplot")
(:file "demo")))

(asdf:defsystem :vgplot-test
(asdf:defsystem :vgplot/test
:serial t
:description "Test environment for vgplot"
:author "Volker Sarodnick"
:license "GPL"
:depends-on (:vgplot :lisp-unit)
:components ((:file "package-test")
(:file "vgplot-test")))
:components ((:file "test")))

0 comments on commit f162c82

Please sign in to comment.