Coverage report: /home/ellis/comp/core/ffi/rustls/condition.lisp
Kind | Covered | All | % |
expression | 0 | 19 | 0.0 |
branch | 0 | 2 | 0.0 |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; condition.lisp --- Rustls Conditions
8
(define-condition rustls-condition () ())
10
(define-condition rustls-c-error (rustls-condition std:std-error) ())
12
(defun rustls-c-error (code)
13
(let ((ret (rustls-result* code)))
15
(error 'rustls-c-error :message (format nil "Rustls signaled an error: ~A (~A)" ret code)))))