Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
ansi-test
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Michał Herda
ansi-test
Commits
56668abf
Commit
56668abf
authored
20 years ago
by
pfdietz
Browse files
Options
Downloads
Patches
Plain Diff
Add an :ignore parameter, giving a condition type of errors to be ignored during testing
parent
54291e05
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
ansi-tests/random-type-prop.lsp
+23
-6
23 additions, 6 deletions
ansi-tests/random-type-prop.lsp
with
23 additions
and
6 deletions
ansi-tests/random-type-prop.lsp
+
23
−
6
View file @
56668abf
...
...
@@ -28,10 +28,15 @@
(reps *default-reps*)
(enclosing-the nil)
(cell *default-cell*)
(ignore nil)
(test #'regression-test::equalp-with-case))
(assert (<= 1 minargs maxargs 20))
(prog1
(dotimes (i reps)
again
(handler-bind
#-lispworks ((error #'(lambda (c) (when (typep c ignore) (go again)))))
#+lispworks ()
(let* ((param-names
'(p1 p2 p3 p4 p5 p6 p7 p8 p9 p10
p11 p12 p13 p14 p15 p16 p17 p18 p19 p20))
...
...
@@ -110,11 +115,12 @@
(#+sbcl (sb-ext::compiler-note #'muffle-warning)
(warning #'muffle-warning))
(compile nil form)))
(result (if store-into-cell?
(let ((r (make-array nil :element-type upgraded-result-type)))
(apply fn r param-vals)
(aref r))
(apply fn param-vals))))
(result
(if store-into-cell?
(let ((r (make-array nil :element-type upgraded-result-type)))
(apply fn r param-vals)
(aref r))
(apply fn param-vals))))
(setq *random-type-prop-result*
(list :upgraded-result-type upgraded-result-type
:form form
...
...
@@ -122,7 +128,9 @@
:result result
:rval rval))
(unless (funcall test result rval)
(return *random-type-prop-result*))))))
(return *random-type-prop-result*))))
#+allegro (excl::gc t)
))))
(defun make-random-arguments (types-or-funs)
(let ((vals nil))
...
...
@@ -316,3 +324,12 @@
'compiled-function
'function))
(1 t)))
;;; Macro for defining random type prop tests
(defmacro def-type-prop-test (name &body args)
`(deftest ,(intern (concatenate 'string "RANDOM-TYPE-PROP."
(string name))
(find-package :cl-test))
(do-random-type-prop-tests ,@args)
nil))
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