Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cl-base64
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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Nyxt
cl-base64
Commits
4c36b6fb
Commit
4c36b6fb
authored
21 years ago
by
Kevin M. Rosenberg
Browse files
Options
Downloads
Patches
Plain Diff
r5553: *** empty log message ***
parent
a4e59508
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
base64.asd
+11
-2
11 additions, 2 deletions
base64.asd
debian/changelog
+6
-0
6 additions, 0 deletions
debian/changelog
tests.lisp
+1
-1
1 addition, 1 deletion
tests.lisp
with
18 additions
and
3 deletions
base64.asd
+
11
−
2
View file @
4c36b6fb
...
...
@@ -7,7 +7,7 @@
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Dec 2002
;;;;
;;;; $Id: base64.asd,v 1.2
1
2003/0
6/12 14:05:11
kevin Exp $
;;;; $Id: base64.asd,v 1.2
2
2003/0
8/24 20:38:08
kevin Exp $
;;;; *************************************************************************
(
in-package
#:cl-user
)
...
...
@@ -30,10 +30,19 @@
((
:file
"package"
)
(
:file
"encode"
:depends-on
(
"package"
))
(
:file
"decode"
:depends-on
(
"package"
))
(
:file
"base64-tests"
:depends-on
(
"encode"
"decode"
))
))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'base64
))))
(
operate
'load-op
'base64-tests
)
(
operate
'test-op
'base64-tests
:force
t
))
(
defsystem
base64-tests
:depends-on
(
base64
)
:components
((
:file
"tests"
)))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'base64-tests
))))
(
operate
'load-op
'base64-tests
)
(
or
(
funcall
(
intern
(
symbol-name
'
#:test-base64
)
(
find-package
'base64-test
)))
(
error
"test-op failed"
)))
This diff is collapsed.
Click to expand it.
debian/changelog
+
6
−
0
View file @
4c36b6fb
cl-base64 (3.3-1) unstable; urgency=low
* Rework test loading
-- Kevin M. Rosenberg <kmr@debian.org> Sun, 24 Aug 2003 13:40:03 -0600
cl-base64 (3.2.1-1) unstable; urgency=low
* New upstream
...
...
This diff is collapsed.
Click to expand it.
base64-
tests.lisp
→
tests.lisp
+
1
−
1
View file @
4c36b6fb
...
...
@@ -7,7 +7,7 @@
;;;; Programmer: Kevin M. Rosenberg
;;;; Date Started: Jan 2003
;;;;
;;;; $Id:
base64-
tests.lisp,v 1.1
4
2003/0
6/12 14:05:11
kevin Exp $
;;;; $Id: tests.lisp,v 1.1 2003/0
8/24 20:38:08
kevin Exp $
;;;; *************************************************************************
(
in-package
#:cl-user
)
...
...
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