actually run Part3 of Unicode Normalization tests
authorChristophe Rhodes <csr21@cantab.net>
Sat, 18 May 2013 09:54:12 +0000 (10:54 +0100)
committerChristophe Rhodes <csr21@cantab.net>
Sat, 18 May 2013 19:04:05 +0000 (20:04 +0100)
tests/unicode-normalization.impure.lisp

index 29b7ff2..e930440 100644 (file)
       (do ((line (read-line s) (read-line s)))
           ((char= #\# (char line 0))
            (assert (char= #\# (char (read-line s) 0)))
-           (assert (null (read-line s nil nil))))))))
+           (assert (null (read-line s nil nil))))
+        (destructuring-bind (c1 c2 c3 c4 c5)
+            (parse-one-line line)
+          (test-line c1 c2 c3 c4 c5))))))
 
 (test-normalization)