Loading ansi-tests/load-printer.lsp +1 −0 Original line number Diff line number Diff line Loading @@ -20,3 +20,4 @@ (load "print-bit-vector.lsp") (load "print-vector.lsp") (load "print-array.lsp") (load "print-random-state.lsp") ansi-tests/print-random-state.lsp 0 → 100644 +18 −0 Original line number Diff line number Diff line ;-*- Mode: Lisp -*- ;;;; Author: Paul Dietz ;;;; Created: Tue May 25 07:15:02 2004 ;;;; Contains: Tests of printing random states (in-package :cl-test) (compile-and-load "printer-aux.lsp") (deftest print.random-state.1 (let* ((rs1 *random-state*) (rs2 (with-standard-io-syntax (read-from-string (write-to-string rs1 :readably t))))) (values (notnot (random-state-p rs2)) (is-similar rs1 rs2))) t t) Loading
ansi-tests/load-printer.lsp +1 −0 Original line number Diff line number Diff line Loading @@ -20,3 +20,4 @@ (load "print-bit-vector.lsp") (load "print-vector.lsp") (load "print-array.lsp") (load "print-random-state.lsp")
ansi-tests/print-random-state.lsp 0 → 100644 +18 −0 Original line number Diff line number Diff line ;-*- Mode: Lisp -*- ;;;; Author: Paul Dietz ;;;; Created: Tue May 25 07:15:02 2004 ;;;; Contains: Tests of printing random states (in-package :cl-test) (compile-and-load "printer-aux.lsp") (deftest print.random-state.1 (let* ((rs1 *random-state*) (rs2 (with-standard-io-syntax (read-from-string (write-to-string rs1 :readably t))))) (values (notnot (random-state-p rs2)) (is-similar rs1 rs2))) t t)