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

Desperate attempt do debug pathname test in CLISP. FAIL.

parent ce556b5f
No related branches found
No related tags found
No related merge requests found
...@@ -179,11 +179,12 @@ ...@@ -179,11 +179,12 @@
(handler-bind (handler-bind
((error (lambda (c) ((error (lambda (c)
(incf system-failures) (incf system-failures)
(format result-stream "~&~%***~%error: ~a~%~:w" (format *error-output* "~&error! ~a~%sysdef:~% ~W~%" c system-definition)
c system-definition)
#+sbcl (sb-debug:backtrace 69) #+sbcl (sb-debug:backtrace 69)
#+clozure (ccl:print-call-history :count 69 :start-frame-number 1) #+clozure (ccl:print-call-history :count 69 :start-frame-number 1)
#+clisp (system::print-backtrace) #+clisp (system::print-backtrace)
(format result-stream "~&~%***~%error: ~a~%~:w"
c system-definition)
(return-from :test-system)))) (return-from :test-system))))
(unless (and (or (typep system-pathname 'logical-pathname) (unless (and (or (typep system-pathname 'logical-pathname)
(typep module-pathname 'logical-pathname)) (typep module-pathname 'logical-pathname))
...@@ -265,7 +266,16 @@ ...@@ -265,7 +266,16 @@
(setf (logical-pathname-translations "ASDFTEST") nil)) (setf (logical-pathname-translations "ASDFTEST") nil))
(remhash "test-system" asdf::*defined-systems*))) (remhash "test-system" asdf::*defined-systems*)))
#+clisp (trace asdf-utilities:merge-pathnames* make-pathname asdf::merge-component-name-type) #+clisp
(trace
make-pathname
make-instance
asdf::component-pathname
asdf::component-relative-pathname
asdf::merge-pathnames*
asdf::merge-component-name-type
asdf::component-name-to-pathname-components
make-pathname)
(quit-on-error (quit-on-error
(or (test-component-pathnames :delete-host t :support-string-pathnames nil) (or (test-component-pathnames :delete-host t :support-string-pathnames nil)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment