projects
/
sbcl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7230ec4
)
actually run Part3 of Unicode Normalization tests
author
Christophe Rhodes
<csr21@cantab.net>
Sat, 18 May 2013 09:54:12 +0000
(10:54 +0100)
committer
Christophe Rhodes
<csr21@cantab.net>
Sat, 18 May 2013 19:04:05 +0000
(20:04 +0100)
tests/unicode-normalization.impure.lisp
patch
|
blob
|
history
diff --git
a/tests/unicode-normalization.impure.lisp
b/tests/unicode-normalization.impure.lisp
index
29b7ff2
..
e930440
100644
(file)
--- a/
tests/unicode-normalization.impure.lisp
+++ b/
tests/unicode-normalization.impure.lisp
@@
-111,6
+111,9
@@
(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)