X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Funicode-normalization.impure.lisp;h=7cd0fdda7bfc70f1c5cb120ac7d8adf904cde1e3;hb=829ced3e78a23ba153ba4db64e6ea6984c2313b6;hp=e930440b1ac1e70a56a8bcf5510c287e2a6e0efd;hpb=d0895e12b8275044532ce9a6041b91043cd69d4a;p=sbcl.git diff --git a/tests/unicode-normalization.impure.lisp b/tests/unicode-normalization.impure.lisp index e930440..7cd0fdd 100644 --- a/tests/unicode-normalization.impure.lisp +++ b/tests/unicode-normalization.impure.lisp @@ -17,12 +17,10 @@ (defun test-line (c1 c2 c3 c4 c5) ;; NFC - #+nil (assert-all-string= c2 (normalize-string c1 :nfc) (normalize-string c2 :nfc) (normalize-string c3 :nfc)) - #+nil (assert-all-string= c4 (normalize-string c4 :nfc) (normalize-string c5 :nfc)) @@ -37,7 +35,6 @@ (normalize-string c5 :nfd)) ;; NFKC - #+nil (assert-all-string= c4 (normalize-string c1 :nfkc) (normalize-string c2 :nfkc) @@ -55,10 +52,8 @@ (defun test-no-normalization (string) (assert-all-string= string - #+nil (normalize-string string :nfc) (normalize-string string :nfd) - #+nil (normalize-string string :nfkc) (normalize-string string :nfkd)))