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
eca5964e
Commit
eca5964e
authored
11 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
test/asdf-pathname-test.script
+13
-13
13 additions, 13 deletions
test/asdf-pathname-test.script
test/test-compile-file-failure.script
+4
-3
4 additions, 3 deletions
test/test-compile-file-failure.script
test/test-logical-pathname.script
+1
-1
1 addition, 1 deletion
test/test-logical-pathname.script
with
18 additions
and
17 deletions
test/asdf-pathname-test.script
+
13
−
13
View file @
eca5964e
...
@@ -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")
...
...
This diff is collapsed.
Click to expand it.
test/test-compile-file-failure.script
+
4
−
3
View file @
eca5964e
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
test/test-logical-pathname.script
+
1
−
1
View file @
eca5964e
...
@@ -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;"))
...
...
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