You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
chez-openbsd/nanopass/tests/unit-test-helpers-implement...

10 lines
409 B
Scheme

;;; Copyright (c) 2000-2015 Andrew W. Keep, R. Kent Dybvig
;;; See the accompanying file Copyright for details
(library (tests unit-test-helpers-implementation)
(export with-output-to-string display-condition format-error-message)
(import (chezscheme))
(define-syntax format-error-message
(syntax-rules ()
[(_ args ...) (parameterize ([print-level 3] [print-length 6]) (format args ...))])))