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

Since Camm disappeared again, disable (big) tests known to fail on GCL.

parent 22c35e4e
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
(in-package :asdf-pathname-test) (in-package :asdf-pathname-test)
(eval-when (:compile-toplevel :load-toplevel :execute) (eval-when (:compile-toplevel :load-toplevel :execute)
#-xcl (push :asdf-test-logical-pathname *features*) #-(or xcl gcl) (push :asdf-test-logical-pathname *features*)
#+xcl (push :buggy-untyped-file *features*)) #+xcl (push :buggy-untyped-file *features*))
;;(setf *unspecific-pathname-type* nil) ;;(setf *unspecific-pathname-type* nil)
...@@ -423,20 +423,20 @@ ...@@ -423,20 +423,20 @@
(asdf:initialize-output-translations) (asdf:initialize-output-translations)
(format t "output translations: ~S~%" (asdf::output-translations)) (format t "output translations: ~S~%" (asdf::output-translations))
(progn ;; we're testing with unix or some emulation, are we not?
;; we're testing with unix or some emulation, are we not?
(assert-pathname-equal (resolve-location '(:home)) (truename (user-homedir-pathname)))
(assert-pathname-equal (resolve-location '("/foo" "bar" "baz")) #p"/foo/bar/baz")
(assert-pathname-equal (resolve-location '("/foo" "bar" "baz") :ensure-directory t) #p"/foo/bar/baz/")
(assert-pathname-equal (resolve-location '("/foo" "bar" "baz") :ensure-directory t :wilden t) (wilden #p"/foo/bar/baz/"))
(assert-pathname-equal (resolve-location '("/foo" "bar" "baz") :ensure-directory nil :wilden t) (wilden #p"/foo/bar/"))
(assert-pathname-equal (resolve-location '("/foo" "bar" :**/ "baz" #p"*.*") :ensure-directory nil :wilden t) #p"/foo/bar/**/baz/*.*")
(assert (directory-pathname-p (system-source-directory (find-system :test-asdf/test-source-directory-1)))) (assert-pathname-equal (resolve-location '(:home)) (truename (user-homedir-pathname)))
(assert (directory-pathname-p (system-source-directory (find-system :test-asdf/test-source-directory-2)))) (assert-pathname-equal (resolve-location '("/foo" "bar" "baz")) #p"/foo/bar/baz")
(assert-pathname-equal (resolve-location '("/foo" "bar" "baz") :ensure-directory t) #p"/foo/bar/baz/")
(assert-pathname-equal (resolve-location '("/foo" "bar" "baz") :ensure-directory t :wilden t) (wilden #p"/foo/bar/baz/"))
(assert-pathname-equal (resolve-location '("/foo" "bar" "baz") :ensure-directory nil :wilden t) (wilden #p"/foo/bar/"))
(assert-pathname-equal (resolve-location '("/foo" "bar" :**/ "baz" #p"*.*") :ensure-directory nil :wilden t) #p"/foo/bar/**/baz/*.*")
(or (test-component-pathnames :delete-host t :support-string-pathnames nil) (assert (directory-pathname-p (system-source-directory (find-system :test-asdf/test-source-directory-1))))
(leave-test "test failed" 1))) (assert (directory-pathname-p (system-source-directory (find-system :test-asdf/test-source-directory-2))))
#-gcl
(assert (test-component-pathnames :delete-host t :support-string-pathnames nil))
#| #|
(load "LIBRARY:de;setf;utility;asdf;cp-test.lisp") (load "LIBRARY:de;setf;utility;asdf;cp-test.lisp")
......
...@@ -4,11 +4,12 @@ ...@@ -4,11 +4,12 @@
:components ((:file "test-compile-file-failure"))) :components ((:file "test-compile-file-failure")))
(assert (handler-case (assert (handler-case
(let ((*compile-file-failure-behaviour* :warn)) (let ((*compile-file-failure-behaviour* :warn))
(load-system 'test-compile-file-failure :force t) (load-system 'test-compile-file-failure :force t)
t) t)
(compile-file-error () nil))) (compile-file-error () nil)))
#-gcl
(assert (handler-case (assert (handler-case
(let ((*compile-file-failure-behaviour* :error)) (let ((*compile-file-failure-behaviour* :error))
(load-system 'test-compile-file-failure :force t) (load-system 'test-compile-file-failure :force t)
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
(translate-logical-pathname "ASDF:test;test-logical-pathname.asd") (translate-logical-pathname "ASDF:test;test-logical-pathname.asd")
(truename "ASDF:test;test-logical-pathname.asd")) (truename "ASDF:test;test-logical-pathname.asd"))
#+xcl (leave-test "GCL 2.6 doesn't do Logical pathnames well enough" 0) #+(or gcl xcl) (leave-test "This implementation doesn't do Logical pathnames well enough" 0)
(DBG "Test logical pathnames in central registry") (DBG "Test logical pathnames in central registry")
(setf *central-registry* '(#p"ASDF:test;")) (setf *central-registry* '(#p"ASDF:test;"))
......
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