Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
puri
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
clpm
puri
Commits
65446156
Commit
65446156
authored
Sep 29, 2020
by
Kevin M. Rosenberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve test suite for modern ASDF
parent
ef5afb9e
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
23 deletions
+20
-23
debian/changelog
debian/changelog
+7
-0
debian/compat
debian/compat
+1
-1
debian/control
debian/control
+1
-1
puri.asd
puri.asd
+9
-17
tests.lisp
tests.lisp
+2
-4
No files found.
debian/changelog
View file @
65446156
cl-puri (1:1.5.7.1-1) unstable; urgency=medium
* Rework test suite for newer versions of ASDF
* Upload to Debian (closes: 921508)
-- Kevin M. Rosenberg <kmr@debian.org> Tue, 29 Sep 2020 15:55:37 +0000
cl-puri (1:1.5.7-1) unstable; urgency=medium
* Avoid name collision with zacl and net.uri nickname (thanks Dave Cooper)
...
...
debian/compat
View file @
65446156
7
11
debian/control
View file @
65446156
...
...
@@ -3,7 +3,7 @@ Section: lisp
Priority: optional
Maintainer: Kevin M. Rosenberg <kmr@debian.org>
Build-Depends-Indep: dh-lisp
Build-Depends: debhelper (>=
7
.0.0)
Build-Depends: debhelper (>=
11
.0.0)
Standards-Version: 3.9.5.0
Homepage: http://files.kpe.io/puri/
Vcs-Git: git://git.kpe.io/puri/
...
...
puri.asd
View file @
65446156
...
...
@@ -6,28 +6,20 @@
(
defpackage
#:puri-system
(
:use
#:cl
#:asdf
))
(
in-package
#:puri-system
)
(
defsystem
puri
:name
"cl-puri"
:maintainer
"Kevin M. Rosenberg <kmr@debian.org>"
:licence
"GNU Lesser General Public License"
:description
"Portable Universal Resource Indentifier Library"
:components
((
:file
"src"
)))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'puri
))))
(
oos
'load-op
'puri-tests
)
(
oos
'test-op
'puri-tests
))
((
:file
"src"
))
:in-order-to
((
test-op
(
test-op
"puri/test"
))))
(
defsystem
puri
-tests
:depends-on
(
:p
uri
:ptester
)
(
defsystem
puri
/test
:depends-on
(
:p
tester
:puri
)
:components
((
:file
"tests"
)))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'puri-tests
))))
(
or
(
funcall
(
intern
(
symbol-name
'
#:do-tests
)
(
find-package
:puri-tests
)))
(
error
"test-op failed"
)))
(
defmethod
operation-done-p
((
o
test-op
)
(
c
(
eql
(
find-system
'puri-tests
))))
(
values
nil
))
((
:file
"tests"
))
:perform
(
test-op
(
o
s
)
(
or
(
funcall
(
intern
(
symbol-name
'
#:do-tests
)
(
find-package
'
#:puri/test
)))
(
error
"test-op failed"
))))
tests.lisp
View file @
65446156
...
...
@@ -23,8 +23,8 @@
;; $Id$
(
defpackage
#:puri
-tests
(
:use
#:puri
#:cl
#:ptester
))
(
in-package
#:puri
-tests
)
(
defpackage
#:puri
/test
(
:use
#:puri
#:cl
#:ptester
))
(
in-package
#:puri
/test
)
(
unintern-uri
t
)
...
...
@@ -427,5 +427,3 @@
(
with-tests
(
:name
"puri"
)
(
gen-test-forms
)))
t
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment