Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Didier Verna
asdf
Commits
20a36319
Commit
20a36319
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
More XCL tweaks.
parent
595536fe
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
TODO
+2
-0
2 additions, 0 deletions
TODO
test/asdf-pathname-test.script
+8
-6
8 additions, 6 deletions
test/asdf-pathname-test.script
uiop/image.lisp
+1
-1
1 addition, 1 deletion
uiop/image.lisp
with
11 additions
and
7 deletions
TODO
+
2
−
0
View file @
20a36319
...
@@ -29,6 +29,8 @@
...
@@ -29,6 +29,8 @@
Maybe O(n^3) behavior or worse in walking the C++ stack?
Maybe O(n^3) behavior or worse in walking the C++ stack?
The backtrace frames may contains unprintable objects.
The backtrace frames may contains unprintable objects.
make-pathname fails to copy the version from the defaults.
make-pathname fails to copy the version from the defaults.
(make-pathname :host "ASDFTEST" :directory '(:absolute "system2" "module4")
:name nil :type nil) fails to handle the logical-pathname-ness of ASDFTEST.
* GCL is almost working again; but implementation bugs remain.
* GCL is almost working again; but implementation bugs remain.
See November 2013 discussion on gcl-devel
See November 2013 discussion on gcl-devel
...
...
This diff is collapsed.
Click to expand it.
test/asdf-pathname-test.script
+
8
−
6
View file @
20a36319
...
@@ -117,15 +117,12 @@
...
@@ -117,15 +117,12 @@
(with-slots (system-count directory-count file-count
(with-slots (system-count directory-count file-count
system-failures directory-failures file-failures all-tests) test-status
system-failures directory-failures file-failures all-tests) test-status
(let ((success
(let ((success
(block :foo
(block :foo
;; XCL 0.0.0.291 is confused if using block nil
(handler-bind ((error #'(lambda (c)
(handler-bind ((error #'(lambda (c)
(incf *backtraces*)
(incf *backtraces*)
(dolist (o (list *trace-output*))
(dolist (o (list *trace-output* *standard-output*))
(format o "BACKTRACES: ~S (max ~S)~%"
*backtraces* *max-backtraces*)
(when (<= *backtraces* *max-backtraces*)
(when (<= *backtraces* *max-backtraces*)
#+xcl (safe-format! stream "~&Condition:~%~A~&" c)
(print-condition-backtrace c :stream o)))
#-xcl (print-condition-backtrace c :stream o)))
(return-from :foo nil))))
(return-from :foo nil))))
(assert (probe-file* (component-pathname file)) ()
(assert (probe-file* (component-pathname file)) ()
"Can't find pathname ~S for component ~S" (component-pathname file) file)
"Can't find pathname ~S for component ~S" (component-pathname file) file)
...
@@ -367,6 +364,11 @@
...
@@ -367,6 +364,11 @@
:direction :output
:direction :output
:if-exists :supersede :if-does-not-exist :create)
:if-exists :supersede :if-does-not-exist :create)
(setup-asdftest-logical-host :root root)
(setup-asdftest-logical-host :root root)
#+asdf-test-logical-pathname
(assert-pathname-equal
(make-pathname :host "ASDFTEST" :directory '(:absolute "system2" "module4")
:name nil :type nil)
(parse-namestring "ASDFTEST:system2;module4;"))
(multiple-value-bind (systems modules files test-files)
(multiple-value-bind (systems modules files test-files)
(make-test-files
(make-test-files
:root root
:root root
...
...
This diff is collapsed.
Click to expand it.
uiop/image.lisp
+
1
−
1
View file @
20a36319
...
@@ -146,7 +146,7 @@ This is designed to abstract away the implementation specific quit forms."
...
@@ -146,7 +146,7 @@ This is designed to abstract away the implementation specific quit forms."
#.
(
if
(
find-symbol*
"*VERBOSITY*"
"SB-DEBUG"
nil
)
:stream
'
(
or
count
most-positive-fixnum
))
#.
(
if
(
find-symbol*
"*VERBOSITY*"
"SB-DEBUG"
nil
)
:stream
'
(
or
count
most-positive-fixnum
))
stream
)
stream
)
#+
xcl
#+
xcl
(
loop
:for
i
:from
0
(
loop
:for
i
:from
0
:below
(
or
count
most-positive-fixnum
)
:for
frame
:in
(
extensions:backtrace-as-list
)
:do
:for
frame
:in
(
extensions:backtrace-as-list
)
:do
(
safe-format!
stream
"~&~D: ~S~%"
i
frame
)))
(
safe-format!
stream
"~&~D: ~S~%"
i
frame
)))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment