X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Fexternal-format.impure.lisp;h=cff240a2737b9a00b25bcbb35c45d5454459064d;hb=fdf46e7bd7aba9b5c8af629fdb2692d9b33b9207;hp=a642770af84b7d11e3439ebe6dcdf399eb792781;hpb=c6b078527eb68acc281dc79c91824c937f9447fe;p=sbcl.git diff --git a/tests/external-format.impure.lisp b/tests/external-format.impure.lisp index a642770..cff240a 100644 --- a/tests/external-format.impure.lisp +++ b/tests/external-format.impure.lisp @@ -255,4 +255,30 @@ (write-string string s) (assert (= (file-position s) (+ position string-length)))))) -;;;; success \ No newline at end of file + +;;; See sbcl-devel "Subject: Bug in FILE-POSITION on UTF-8-encoded files" +;;; by Lutz Euler on 2006-03-05 for more details. +(with-test (:name (:file-position :utf-8) + :fails-on :sbcl) + (let ((path "external-format-test.txt")) + (with-open-file (s path + :direction :output + :if-exists :supersede + :element-type '(unsigned-byte 8)) + ;; Write #\*, encoded in UTF-8, to the file. + (write-byte 42 s) + ;; Append #\adiaeresis, encoded in UTF-8, to the file. + (write-sequence '(195 164) s)) + (with-open-file (s path :external-format :utf-8) + (read-char s) + (let ((pos (file-position s)) + (char (read-char s))) + (format t "read character with code ~a successfully from file position ~a~%" + (char-code char) pos) + (file-position s pos) + (format t "set file position back to ~a, trying to read-char again~%" pos) + (let ((new-char (read-char s))) + (assert (char= char new-char))))) + (values))) + +;;;; success