diff --git a/ansi-tests/pprint-fill.lsp b/ansi-tests/pprint-fill.lsp index a33bb8279f760f75852c1451e070dfe34b85435d..dc5d508bef1cba2bdeb8dddec67cf929049970d6 100644 --- a/ansi-tests/pprint-fill.lsp +++ b/ansi-tests/pprint-fill.lsp @@ -133,3 +133,22 @@ ;;; (def-pprint-fill-test pprint-fill.14 ((let ((x (list 'CL-USER::|A|))) (list x x))) "(#1=(A) #1#)" :circle t) + +;;; Error tests + +(deftest pprint-fill.error.1 + (signals-error (pprint-fill) program-error) + t) + +(deftest pprint-fill.error.2 + (signals-error (pprint-fill *standard-output*) program-error) + t) + +(deftest pprint-fill.error.3 + (signals-error (pprint-fill *standard-output* nil t t t) program-error) + t) + + + + + diff --git a/ansi-tests/pprint-linear.lsp b/ansi-tests/pprint-linear.lsp index f29f69562f1961209d0309ccb6aefcb44c42f296..7736b1bea11562831d1d46629cc2e806b1e21e4a 100644 --- a/ansi-tests/pprint-linear.lsp +++ b/ansi-tests/pprint-linear.lsp @@ -127,3 +127,19 @@ ;;; (def-pprint-linear-test pprint-linear.14 ((let ((x (list 'CL-USER::|A|))) (list x x))) "(#1=(A) #1#)" :circle t) + +;;; Error tests + +(deftest pprint-linear.error.1 + (signals-error (pprint-linear) program-error) + t) + +(deftest pprint-linear.error.2 + (signals-error (pprint-linear *standard-output*) program-error) + t) + +(deftest pprint-linear.error.3 + (signals-error (pprint-linear *standard-output* nil t t t) program-error) + t) + +