Skip to content
Snippets Groups Projects
Commit 16029fcd authored by Robert P. Goldman's avatar Robert P. Goldman
Browse files

Fixed bugs in the tests.

There were bugs in the tests having to do with repeatedly calling
quit-on-error in a single test script.  Only one of those calls
will be evaluated, and then the script will exit.  That means that
multiple calls to quit-on-error masked failures in the tests.

Also fixed a package-related error in test1.script that I conjecture
led to the mistaken use of multiple calls to quit-on-error.
parent e96c0bdb
No related branches found
No related tags found
No related merge requests found
...@@ -5,9 +5,8 @@ ...@@ -5,9 +5,8 @@
(setf asdf:*central-registry* '(*default-pathname-defaults*)) (setf asdf:*central-registry* '(*default-pathname-defaults*))
(asdf:operate 'asdf:load-op 'test-force) (asdf:operate 'asdf:load-op 'test-force)
(defvar file1-date (file-write-date (asdf:compile-file-pathname* "file1")))) (defvar file1-date (file-write-date (asdf:compile-file-pathname* "file1")))
(quit-on-error
;; unforced, date should stay same ;; unforced, date should stay same
(sleep 1) (sleep 1)
(asdf:operate 'asdf:load-op 'test-force) (asdf:operate 'asdf:load-op 'test-force)
......
...@@ -5,9 +5,8 @@ ...@@ -5,9 +5,8 @@
(setf asdf:*central-registry* '(*default-pathname-defaults*)) (setf asdf:*central-registry* '(*default-pathname-defaults*))
(asdf:operate 'asdf:load-op 'static-and-serial) (asdf:operate 'asdf:load-op 'static-and-serial)
(defvar file1-date (file-write-date (asdf:compile-file-pathname* "file1")))) (defvar file1-date (file-write-date (asdf:compile-file-pathname* "file1")))
(quit-on-error
;; cheat ;; cheat
(setf asdf::*defined-systems* (make-hash-table :test 'equal)) (setf asdf::*defined-systems* (make-hash-table :test 'equal))
......
...@@ -7,15 +7,13 @@ ...@@ -7,15 +7,13 @@
(asdf:operate 'asdf:load-op 'test1) (asdf:operate 'asdf:load-op 'test1)
;; test that it compiled ;; test that it compiled
(defvar file1-date (file-write-date (asdf:compile-file-pathname* "file1")))) (defvar file1-date (file-write-date (asdf:compile-file-pathname* "file1")))
(quit-on-error (assert (and file1-date (file-write-date (asdf:compile-file-pathname* "file2"))))
(assert (and file1-date (file-write-date (asdf:compile-file-pathname* "file2")))))
;; and loaded ;; and loaded
(assert test-package::*file1*) (assert (eval (intern (symbol-name '#:*file1*) :test-package)))
(quit-on-error
;; now remove one output file and check that the other is _not_ ;; now remove one output file and check that the other is _not_
;; recompiled ;; recompiled
(sleep 1) ; mtime has 1-second granularity, so pause here for fast machines (sleep 1) ; mtime has 1-second granularity, so pause here for fast machines
......
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