Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kmrcl
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
kmrcl
Commits
963ec39d
Commit
963ec39d
authored
4 years ago
by
Kevin M. Rosenberg
Browse files
Options
Downloads
Patches
Plain Diff
Use newer ASDF test-op functionality
parent
3746b777
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
kmrcl-tests.asd
+0
-27
0 additions, 27 deletions
kmrcl-tests.asd
kmrcl.asd
+10
-5
10 additions, 5 deletions
kmrcl.asd
with
10 additions
and
32 deletions
kmrcl-tests.asd
deleted
100644 → 0
+
0
−
27
View file @
3746b777
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: kmrcl-tests.asd
;;;; Purpose: ASDF system definitionf for kmrcl testing package
;;;; Author: Kevin M. Rosenberg
;;;; Date Started: Apr 2003
;;;;
;;;; $Id$
;;;; *************************************************************************
(
defpackage
#:kmrcl-tests-system
(
:use
#:asdf
#:cl
))
(
in-package
#:kmrcl-tests-system
)
(
defsystem
kmrcl-tests
:depends-on
(
:rt
:kmrcl
)
:components
((
:file
"tests"
)))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'kmrcl-tests
))))
(
or
(
funcall
(
intern
(
symbol-name
'
#:do-tests
)
(
find-package
'
#:regression-test
)))
(
error
"test-op failed"
)
t
))
This diff is collapsed.
Click to expand it.
kmrcl.asd
+
10
−
5
View file @
963ec39d
...
@@ -58,10 +58,15 @@
...
@@ -58,10 +58,15 @@
(
:file
"os"
:depends-on
(
"macros"
"impl"
))
(
:file
"os"
:depends-on
(
"macros"
"impl"
))
(
:file
"signals"
:depends-on
(
"package"
))
(
:file
"signals"
:depends-on
(
"package"
))
(
:file
"btree"
:depends-on
(
"macros"
))
(
:file
"btree"
:depends-on
(
"macros"
))
(
:file
"hash"
:depends-on
(
"macros"
))
(
:file
"hash"
:depends-on
(
"macros"
))
)
))
:in-order-to
((
test-op
(
test-op
"kmrcl/test"
))
))
(
defmethod
perform
((
o
test-op
)
(
c
(
eql
(
find-system
'kmrcl
))))
(
operate
'load-op
'kmrcl-tests
)
(
operate
'test-op
'kmrcl-tests
:force
t
))
(
defsystem
kmrcl/test
:depends-on
(
:rt
:kmrcl
)
:components
((
:file
"tests"
))
:perform
(
test-op
(
o
s
)
(
or
(
funcall
(
intern
(
symbol-name
'
#:do-tests
)
(
find-package
'
#:regression-test
)))
(
error
"test-op failed"
))))
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