X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-introspect%2Ftest-driver.lisp;h=0ce71879ac111e985a7306a7c121d3e011396c86;hb=ea6c9e2eb0f0a270d83e8c94c0daa934d1058f0f;hp=2d94f116b43c5f91ae11b369ed65ba6c9549be61;hpb=d3a20211cd639081185d5d3de1aa2e3e080042de;p=sbcl.git diff --git a/contrib/sb-introspect/test-driver.lisp b/contrib/sb-introspect/test-driver.lisp index 2d94f11..0ce7187 100644 --- a/contrib/sb-introspect/test-driver.lisp +++ b/contrib/sb-introspect/test-driver.lisp @@ -284,13 +284,16 @@ (tai 42 :immediate nil) t) +;;; Skip the whole damn test on GENCGC PPC -- the combination is just +;;; to flaky for this to make too much sense. +#-(and ppc gencgc) (deftest allocation-information.4 #+gencgc (tai #'cons :heap ;; FIXME: This is the canonical GENCGC result. On PPC we sometimes get ;; :LARGE T, which doesn't seem right -- but ignore that for now. '(:space :dynamic :generation 6 :write-protected t :boxed t :pinned nil :large nil) - :ignore #+ppc '(:large) #-ppc nil) + :ignore (list :page #+ppc :large)) #-gencgc (tai :cons :heap ;; FIXME: Figure out what's the right cheney-result. SPARC at least @@ -375,12 +378,10 @@ (deftest function-type.2 (values (type-equal (function-type 'sun) (function-type #'sun)) - ;; Does not currently work due to Bug #384892. (1.0.31.26) - #+nil (type-equal (function-type #'sun) '(function (fixnum fixnum &key (:k1 (member nil t))) (values (member t) &optional)))) - t #+nil t) + t t) ;; Local functions @@ -413,6 +414,7 @@ ;; Interpreted functions +#+sb-eval (deftest function-type.8 (type-equal (function-type (interpret (lambda (x) (declare (fixnum x)) x))) '(function (&rest t) *)) @@ -512,7 +514,7 @@ '(function ((member nil t) fixnum fixnum &key (:k1 (member nil t))) - *))) + (values (member nil t) &optional)))) t t) ;; Misc