From 16197d4fb565e8e6984414bcb014d30ec302d003 Mon Sep 17 00:00:00 2001 From: Lutz Euler Date: Sun, 2 Jun 2013 14:58:49 +0200 Subject: [PATCH] Fix expected result for a character comparison test under non-unicode. The test "character.pure.lisp / :case-insensitive-char-comparisons :exhaustive" was marked as an expected failure as the unicode implementation is not yet complete, but on a non-unicode build it actually already succeeds. --- tests/character.pure.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/character.pure.lisp b/tests/character.pure.lisp index c84b463..d2dd66c 100644 --- a/tests/character.pure.lisp +++ b/tests/character.pure.lisp @@ -131,7 +131,7 @@ (assert (char-equal (code-char 201) (code-char 233)))) (with-test (:name (:case-insensitive-char-comparisons :exhaustive) - :fails-on '(and)) + :fails-on :sb-unicode) (dotimes (i char-code-limit) (let* ((char (code-char i)) (down (char-downcase char)) -- 1.7.10.4