diff --git a/ansi-tests/pprint-indent.lsp b/ansi-tests/pprint-indent.lsp index 0f81b2a2a2756d19988219c07dd318122b4d0f9c..6245467c5f24ed526b68cd71371704b734bceb95 100644 --- a/ansi-tests/pprint-indent.lsp +++ b/ansi-tests/pprint-indent.lsp @@ -40,6 +40,20 @@ (pprint-indent :block 0.1 s)))) nil) +(deftest pprint-indent.6 + (my-with-standard-io-syntax + (let ((*print-pretty* nil)) + (loop for x in '(1.0s0 1.0f0 1.0d0 1.0l0) + unless + (equal + (multiple-value-list + (with-open-stream (s (make-string-output-stream)) + (pprint-indent :block x s))) + '(nil)) + collect x))) + nil) + +