Skip to content
Snippets Groups Projects
Commit 4d087255 authored by Francois-Rene Rideau's avatar Francois-Rene Rideau
Browse files

Fix tests to not depend on now-unexported utilities.

parent ad660449
No related branches found
No related tags found
No related merge requests found
(defpackage :asdf-test (:use :common-lisp)) (defpackage :asdf-test
(:use :common-lisp)
(:export
#:*test-directory* #:*asdf-directory*
#:load-asdf
#:register-directory #:asdf-load
#:load-asdf-lisp #:compile-asdf #:load-asdf-fasl #:compile-load-asdf #:load-asdf-system
#:quit-on-error #:test-asdf
#:native-namestring
#:exit-lisp #:leave-lisp
#:quietly))
(in-package #:asdf-test) (in-package #:asdf-test)
...@@ -7,7 +17,7 @@ ...@@ -7,7 +17,7 @@
;;(format t "Evaluating asdf/test/script-support~%") ;;(format t "Evaluating asdf/test/script-support~%")
;; We can't use asdf:merge-pathnames* because ASDF isn't loaded yet. ;; We can't use asdf::merge-pathnames* because ASDF isn't loaded yet.
;; We still want to work despite and host/device funkiness. ;; We still want to work despite and host/device funkiness.
(defparameter *test-directory* (defparameter *test-directory*
(make-pathname :name nil :type nil :version nil (make-pathname :name nil :type nil :version nil
......
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
(load "script-support.lisp") (load "script-support.lisp")
(load-asdf) (load-asdf)
(in-package :asdf)
(use-package :asdf-test)
(defparameter *test-directory* (defparameter *test-directory*
(merge-pathnames* (coerce-pathname "tmp/") *asdf-directory*)) (merge-pathnames* (coerce-pathname "tmp/") *asdf-directory*))
...@@ -59,7 +63,7 @@ ...@@ -59,7 +63,7 @@
:if-does-not-exist :create) :if-does-not-exist :create)
(format s "(defsystem :foo~D)~%" i)))) (format s "(defsystem :foo~D)~%" i))))
(quit-on-error (asdf-test:quit-on-error
(assert (assert
(equal (asdf::parse-output-translations-string "/foo:/bar::/baz:/quux") (equal (asdf::parse-output-translations-string "/foo:/bar::/baz:/quux")
......
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
(load "script-support.lisp") (load "script-support.lisp")
(load-asdf) (load-asdf)
(in-package :asdf)
(use-package :asdf-test)
(quit-on-error (quit-on-error
(let* ((asd (merge-pathnames* (coerce-pathname "test-multiple.asd") (let* ((asd (merge-pathnames* (coerce-pathname "test-multiple.asd")
*test-directory*)) *test-directory*))
......
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
(load "script-support.lisp") (load "script-support.lisp")
(load-asdf) (load-asdf)
(in-package :asdf)
(use-package :asdf-test)
#+gcl (trace coerce-pathname) #+gcl (trace coerce-pathname)
(quit-on-error (quit-on-error
......
...@@ -2,6 +2,9 @@ ...@@ -2,6 +2,9 @@
(load "script-support.lisp") (load "script-support.lisp")
(load-asdf) (load-asdf)
(in-package :asdf)
(use-package :asdf-test)
(quit-on-error (quit-on-error
(assert (assert
......
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