Compare commits
2 commits
ab5411da42
...
8f3e0a9a1d
Author | SHA1 | Date | |
---|---|---|---|
8f3e0a9a1d | |||
09ca6cfb6b |
3 changed files with 23 additions and 6 deletions
|
@ -217,9 +217,9 @@
|
||||||
(if (null? active-channels)
|
(if (null? active-channels)
|
||||||
(map
|
(map
|
||||||
(match-lambda
|
(match-lambda
|
||||||
((#f . ('exception . exn))
|
((#f . ('exception exn))
|
||||||
(raise-exception exn))
|
(raise-exception exn))
|
||||||
((#f . ('result . val))
|
((#f . ('result val))
|
||||||
val))
|
val))
|
||||||
channels-to-results)
|
channels-to-results)
|
||||||
(loop
|
(loop
|
||||||
|
@ -239,10 +239,10 @@
|
||||||
(if (eq? channel c)
|
(if (eq? channel c)
|
||||||
(cons #f
|
(cons #f
|
||||||
(match result
|
(match result
|
||||||
(('exception . exn)
|
(('exception exn)
|
||||||
result)
|
result)
|
||||||
(_
|
(_
|
||||||
(cons 'result result))))
|
(list 'result result))))
|
||||||
(cons c r))))
|
(cons c r))))
|
||||||
channels-to-results)))
|
channels-to-results)))
|
||||||
#f))))
|
#f))))
|
||||||
|
|
|
@ -1351,8 +1351,7 @@ available. Return the resource once PROC has returned."
|
||||||
'destroy
|
'destroy
|
||||||
'return)
|
'return)
|
||||||
resource))
|
resource))
|
||||||
(unless (resource-pool-destroy-resource-exception? exn)
|
(raise-exception exn))
|
||||||
(raise-exception exn)))
|
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(with-exception-handler
|
(with-exception-handler
|
||||||
(lambda (exn)
|
(lambda (exn)
|
||||||
|
|
|
@ -61,6 +61,24 @@
|
||||||
identity
|
identity
|
||||||
'(()))))
|
'(()))))
|
||||||
|
|
||||||
|
(run-fibers-for-tests
|
||||||
|
(lambda ()
|
||||||
|
(with-exception-handler
|
||||||
|
(lambda (exn)
|
||||||
|
(unless (and (exception-with-message? exn)
|
||||||
|
(string=? (exception-message exn)
|
||||||
|
"foo"))
|
||||||
|
(raise-exception exn)))
|
||||||
|
(lambda ()
|
||||||
|
(fibers-map-with-progress
|
||||||
|
(lambda _
|
||||||
|
(raise-exception
|
||||||
|
(make-exception-with-message "foo")))
|
||||||
|
'((1)))
|
||||||
|
|
||||||
|
(error 'should-not-reach-here))
|
||||||
|
#:unwind? #t)))
|
||||||
|
|
||||||
(run-fibers-for-tests
|
(run-fibers-for-tests
|
||||||
(lambda ()
|
(lambda ()
|
||||||
(with-exception-handler
|
(with-exception-handler
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue