Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
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
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
Carl Shapiro
cmucl
Commits
f849f4db
Commit
f849f4db
authored
11 years ago
by
Raymond Toy
Browse files
Options
Downloads
Patches
Plain Diff
Simple test script to run all of the tests in the tests directory.
parent
16c06cb8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tests/run-tests.lisp
+96
-0
96 additions, 0 deletions
tests/run-tests.lisp
with
96 additions
and
0 deletions
tests/run-tests.lisp
0 → 100644
+
96
−
0
View file @
f849f4db
;;;; -*- Mode: lisp -*-
;;;; Main script to run all of the tests in the tests directory.
;;;; It is intended to be run using something like
;;;;
;;;; lisp -load tests/run-tests.lisp -eval '(cmucl-test-runner:run-all-tests)'
;;;;
;;;; The exit code indicates whether there were any test failures. A
;;;; non-zero code indicates a failure of some sort.
;;;;
;;;; It is assumed that either asdf or quicklisp is set up
;;;; appropriately so that lisp-unit can be automatically loaded
(
defpackage
:cmucl-test-runner
(
:use
:cl
)
(
:export
#:run-all-tests
#:load-and-run-all-tests
#:print-test-results
))
(
in-package
:cmucl-test-runner
)
(
require
:lisp-unit
)
;; Be rather verbose in printing the tests
(
setf
lisp-unit:*print-summary*
t
)
(
setf
lisp-unit:*print-failures*
t
)
(
setf
lisp-unit:*print-errors*
t
)
(
defvar
*load-path*
*load-pathname*
)
;; Look through all the files in the tests directory and load them.
;; Then run all of the tests. For each file, it ia assumed that a
;; package is created that is named with "-TESTS" appended to he
;; pathname-name of the file.
(
defun
load-and-run-all-tests
()
(
let
(
test-names
test-results
)
(
dolist
(
file
(
directory
"tests/*.lisp"
))
(
unless
(
equal
file
*load-path*
)
(
let
((
basename
(
pathname-name
file
)))
;; Create the package name from the pathname name so we know
;; how to run the test.
(
push
(
concatenate
'string
(
string-upcase
basename
)
"-TESTS"
)
test-names
)
(
load
file
))))
(
setf
test-names
(
nreverse
test-names
))
(
dolist
(
test
test-names
)
(
push
(
lisp-unit:run-tests
:all
test
)
test-results
))
(
nreverse
test-results
)))
(
defun
print-test-results
(
results
)
(
let
((
passed
0
)
(
failed
0
)
(
execute-errors
0
)
failed-tests
execute-error-tests
)
(
dolist
(
result
results
)
(
incf
passed
(
lisp-unit::pass
result
))
(
incf
failed
(
lisp-unit::fail
result
))
(
incf
execute-errors
(
lisp-unit::exerr
result
))
(
when
(
lisp-unit::failed-tests
result
)
(
setf
failed-tests
(
append
(
lisp-unit::failed-tests
result
)
failed-tests
)))
(
when
(
lisp-unit::error-tests
result
)
(
setf
execute-error-tests
(
append
(
lisp-unit::error-tests
result
)
execute-error-tests
))))
(
format
t
"~2&-------------------------------------------------~%"
)
(
format
t
"Summary of all testsuites~2%"
)
(
format
t
"~D testsuites were run~%"
(
length
results
))
(
format
t
" ~5D tests total~%"
(
+
passed
failed
execute-errors
))
(
format
t
" ~5D tests failed~%"
failed
)
(
format
t
" ~5D tests with execution errors~%"
execute-errors
)
(
format
t
"~5,2f% of the tests passed~%"
(
float
(
*
100
(
-
1
(
/
(
+
failed
execute-errors
)
(
+
passed
failed
execute-errors
))))))
;; Print some info about any failed tests. Then exit. We want to
;; set the exit code so that any scripts runnning this can
;; determine if there were any test failures.
(
cond
((
plusp
(
+
failed
execute-errors
))
(
when
failed-tests
(
format
t
"~2&Failed tests: ~S~%"
failed-tests
))
(
when
execute-error-tests
(
format
t
"~2&Execute failures: ~S~%"
execute-error-tests
))
(
unix:unix-exit
1
))
(
t
(
unix:unix-exit
0
)))))
(
defun
run-all-tests
()
(
print-test-results
(
load-and-run-all-tests
)))
;;(run-all-tests)
;;(quit)
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