Commit 891bdbd1 authored by Luís Oliveira's avatar Luís Oliveira
Browse files

Define ASDF:TEST-OP operations for osicat and osicat-tests.

parent c56061ae
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -33,3 +33,6 @@
    ((:file "tests")
     (:file "posix")
     (:file "osicat")))))

(defmethod perform ((o test-op) (c (eql (find-system 'osicat-tests))))
  (funcall (intern (string '#:do-tests) '#:osicat-tests)))
+4 −0
Original line number Diff line number Diff line
@@ -73,3 +73,7 @@
     (:file "fd-streams" :depends-on ("packages"))
     (:file "osicat" :depends-on ("packages" "fd-streams"))
     (:file "time" :depends-on ("packages"))))))

(defmethod perform ((o test-op) (c (eql (find-system 'osicat))))
  (oos 'load-op 'osicat-tests)
  (oos 'test-op 'osicat-tests))