Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
ansi-test
Commits
ea743b29
Commit
ea743b29
authored
Apr 18, 2009
by
ehuelsmann
Browse files
Comment out CATCH.6, which is bogus.
Verified on #lisp, confirmed by crhodes and others.
parent
8614384d
Changes
1
Show whitespace changes
Inline
Side-by-side
ansi-tests/catch.lsp
View file @
ea743b29
...
...
@@ -24,15 +24,20 @@
(catch 'foo 'a (throw 'foo 'b) 'c)
b)
(deftest catch.6
(let ((tag1 (1+ most-positive-fixnum))
(tag2 (1+ most-positive-fixnum)))
(if (eqt tag1 tag2)
'good
(catch tag1
(catch tag2 (throw tag1 'good))
'bad)))
good)
;;
;; The test below is wrong:
;; Numbers can't be assumed to be EQ at
;; any time by conforming programs.
;;
;; (deftest catch.6
;; (let ((tag1 (1+ most-positive-fixnum))
;; (tag2 (1+ most-positive-fixnum)))
;; (if (eqt tag1 tag2)
;; 'good
;; (catch tag1
;; (catch tag2 (throw tag1 'good))
;; 'bad)))
;; good)
(deftest catch.7
(catch 'foo 'a (throw 'foo (values)) 'c))
...
...
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