X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=tests%2Ftype.before-xc.lisp;h=90d8f1df8a9771db63fbd2a22442b571e3af3159;hb=165f17e83d068bc971cd41f407518e600c59a905;hp=7bc61c5df067bfe1b2ad06d0d7e9305f7b6a6ccd;hpb=5470bfd1ed062203f4ab009f6ec19e81f8f32066;p=sbcl.git diff --git a/tests/type.before-xc.lisp b/tests/type.before-xc.lisp index 7bc61c5..90d8f1d 100644 --- a/tests/type.before-xc.lisp +++ b/tests/type.before-xc.lisp @@ -128,14 +128,11 @@ (assert-secondnil (sb-xc:subtypep t '(satisfies foo))) (assert-secondnil (sb-xc:subtypep t '(and (satisfies foo) (satisfies bar)))) (assert-secondnil (sb-xc:subtypep t '(or (satisfies foo) (satisfies bar)))) - ;; FIXME: Enable these tests when bug 84 is fixed. - #| (assert-secondnil (sb-xc:subtypep '(satisfies foo) nil)) (assert-secondnil (sb-xc:subtypep '(and (satisfies foo) (satisfies bar)) nil)) (assert-secondnil (sb-xc:subtypep '(or (satisfies foo) (satisfies bar)) - nil)) - |#) + nil))) ;;; tests of 2-value quantifieroids FOO/TYPE (macrolet ((2= (v1 v2 expr2) @@ -212,4 +209,11 @@ (specifier-type '(or (single-float -1.0 1.0) (single-float 0.1)))))) +(assert (sb-xc:typep #\, 'character)) +(assert (sb-xc:typep #\@ 'character)) + +(assert (type= (type-intersection (specifier-type '(member #\a #\c #\e)) + (specifier-type '(member #\b #\c #\f))) + (specifier-type '(member #\c)))) + (/show "done with tests/type.before-xc.lisp")