X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-introspect%2Ftest-driver.lisp;h=aa7bfc8cc3a53a44fbe92b35a3ae59bee6b30eec;hb=47fe7f5b227bba5964d5dd4d2a93d9e4b1d1502e;hp=322ca918dcf37dee127a0988b23bbd8814c9599a;hpb=d351f80b1076dd54e5aee3dacab82d59c2e58060;p=sbcl.git diff --git a/contrib/sb-introspect/test-driver.lisp b/contrib/sb-introspect/test-driver.lisp index 322ca91..aa7bfc8 100644 --- a/contrib/sb-introspect/test-driver.lisp +++ b/contrib/sb-introspect/test-driver.lisp @@ -12,6 +12,12 @@ (in-package :sb-introspect-test) +(defmacro deftest* ((name &key fails-on) form &rest results) + `(progn + (when (sb-impl::featurep ',fails-on) + (pushnew ',name sb-rt::*expected-failures*)) + (deftest ,name ,form ,@results))) + (deftest function-lambda-list.1 (function-lambda-list 'cl-user::one) (cl-user::a cl-user::b cl-user::c)) @@ -151,12 +157,10 @@ (matchp-name :function '(setf cl-user::o) 23) t) - (deftest find-source-stuff.24 (matchp-name :method '(setf cl-user::p) 24) t) - (deftest find-source-stuff.25 (matchp-name :macro 'cl-user::q 25) t) @@ -190,6 +194,14 @@ (not (find-definition-sources-by-name 'fboundp :type)) t) +(deftest find-source-stuff.31 + (matchp-name :function 'cl-user::compile-time-too-fun 28) + t) + +(deftest find-source-stuff.32 + (matchp-name :function 'cl-user::loaded-as-source-fun 3) + t) + ;;; Check wrt. interplay of generic functions and their methods. (defgeneric xuuq (gf.a gf.b &rest gf.rest &key gf.k-X)) @@ -238,23 +250,40 @@ nil) (deftest deftype-lambda-list.1 - (multiple-value-bind (arglist found?) (deftype-lambda-list 'foobar-type) - (and found? - (equal arglist '(&whole w &environment e - r1 r2 &optional o &rest rest &key k1 k2 k3)))) + (deftype-lambda-list 'foobar-type) + (&whole w &environment e r1 r2 &optional o &rest rest &key k1 k2 k3) t) (deftest deftype-lambda-list.2 - (equal (multiple-value-list (deftype-lambda-list (gensym))) - '(nil nil)) + (deftype-lambda-list (gensym)) + nil + nil) + +;; ARRAY is a primitive type with associated translator function. +(deftest deftype-lambda-list.3 + (deftype-lambda-list 'array) + (&optional (sb-kernel::element-type '*) (sb-kernel::dimensions '*)) + t) + +;; VECTOR is a primitive type that is defined by means of DEFTYPE. +(deftest deftype-lambda-list.4 + (deftype-lambda-list 'vector) + (&optional sb-kernel::element-type sb-kernel::size) t) ;;; Test allocation-information -(defun tai (x kind info) +(defun tai (x kind info &key ignore) (multiple-value-bind (kind2 info2) (sb-introspect:allocation-information x) (unless (eq kind kind2) (error "wanted ~S, got ~S" kind kind2)) + (when (not (null ignore)) + (setf info2 (copy-list info2)) + (dolist (key ignore) + (remf info2 key)) + (setf info (copy-list info)) + (dolist (key ignore) + (remf info key))) (equal info info2))) (deftest allocation-infromation.1 @@ -269,22 +298,35 @@ (tai 42 :immediate nil) t) -(deftest allocation-information.4 +;;; Skip the whole damn test on GENCGC PPC -- the combination is just +;;; to flaky for this to make too much sense. GENCGC SPARC almost +;;; certainly exhibits the same behavior patterns (or antipatterns) as +;;; GENCGC PPC. +;;; +;;; -- It appears that this test can also fail due to systematic issues +;;; (possibly with the C compiler used) which we cannot detect based on +;;; *features*. Until this issue has been fixed, I am marking this test +;;; as failing on Windows to allow installation of the contrib on +;;; affected builds, even if the underlying issue is (possibly?) not even +;;; strictly related to windows. C.f. lp1057631. --DFL +;;; +(deftest* (allocation-information.4 + ;; Ignored as per the comment above, even though it seems + ;; unlikely that this is the right condition. + :fails-on (or :win32 (and (or :ppc :sparc) :gencgc))) + #+gencgc (tai #'cons :heap - #+(and (not ppc) gencgc) - ;; FIXME: This is the canonical GENCGC result, the one below for PPC is - ;; what we get there, but :LARGE T doesn't seem right. Figure out what's - ;; going on. - '(:space :dynamic :generation 6 :write-protected t :pinned nil :large nil) - #+(and ppc gencgc) - '(:space :dynamic :generation 6 :write-protected t :pinned nil :large t) - ;; FIXME: Figure out what's the right cheney-result, and which platforms - ;; return something else. The SPARC version here is what we get there, - ;; but quite possibly that is the result on all non-GENCGC platforms. - #+(and sparc (not gencgc)) - '(:space :read-only) - #+(and (not sparc) (not gencgc)) - '(:space :dynamic)) + ;; 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 ,sb-vm:+pseudo-static-generation+ + :write-protected t :boxed t :pinned nil :large nil) + :ignore (list :page #+ppc :large)) + #-gencgc + (tai :cons :heap + ;; FIXME: Figure out what's the right cheney-result. SPARC at least + ;; has exhibited both :READ-ONLY and :DYNAMIC, which seems wrong. + '() + :ignore '(:space)) t) #+sb-thread @@ -320,13 +362,222 @@ (sb-thread:wait-on-semaphore sem))) :name "child"))) (loop until obj) - (assert (equal (list :stack child) - (multiple-value-list - (sb-introspect:allocation-information obj)))) - (sb-thread:signal-semaphore sem) - (sb-thread:join-thread child) - nil)) + (unwind-protect + (equal (list :stack child) + (multiple-value-list + (sb-introspect:allocation-information obj))) + (sb-thread:signal-semaphore sem) + (sb-thread:join-thread child)))) (deftest allocation-information.thread.3 (thread-tai2) t)) + +;;;; Test FUNCTION-TYPE + +(defun type-equal (typespec1 typespec2) + (or (equal typespec1 typespec2) ; TYPE= punts on &keywords in FTYPEs. + (sb-kernel:type= (sb-kernel:values-specifier-type typespec1) + (sb-kernel:values-specifier-type typespec2)))) + +(defmacro interpret (form) + `(let ((sb-ext:*evaluator-mode* :interpret)) + (eval ',form))) + +;; Functions + +(declaim (ftype (function (integer &optional string) string) moon)) +(defun moon (int &optional suffix) + (concatenate 'string (princ-to-string int) suffix)) + +(deftest function-type.1 + (values (type-equal (function-type 'moon) (function-type #'moon)) + (type-equal (function-type #'moon) + '(function (integer &optional string) + (values string &rest t)))) + t t) + +(defun sun (x y &key k1) + (declare (fixnum x y)) + (declare (boolean k1)) + (declare (ignore x y k1)) + t) + +(deftest function-type.2 + (values (type-equal (function-type 'sun) (function-type #'sun)) + (type-equal (function-type #'sun) + '(function (fixnum fixnum &key (:k1 (member nil t))) + (values (member t) &optional)))) + t t) + +;; Local functions + +(deftest function-type.5 + (flet ((f (s) + (declare (symbol s)) + (values (symbol-name s)))) + (type-equal (function-type #'f) + '(function (symbol) (values simple-string &optional)))) + t) + +;; Closures + +(deftest function-type.6 + (let ((x 10)) + (declare (fixnum x)) + (flet ((closure (y) + (declare (fixnum y)) + (setq x (+ x y)))) + (type-equal (function-type #'closure) + '(function (fixnum) (values fixnum &optional))))) + t) + +;; Anonymous functions + +(deftest function-type.7 + (type-equal (function-type #'(lambda (x) (declare (fixnum x)) x)) + '(function (fixnum) (values fixnum &optional))) + t) + +;; Interpreted functions + +#+sb-eval +(deftest function-type.8 + (type-equal (function-type (interpret (lambda (x) (declare (fixnum x)) x))) + '(function (&rest t) *)) + t) + +;; Generic functions + +(defgeneric earth (x y)) + +(deftest function-type+gfs.1 + (values (type-equal (function-type 'earth) (function-type #'earth)) + (type-equal (function-type 'earth) '(function (t t) *))) + t t) + +;; Implicitly created generic functions. + +;; (FUNCTION-TYPE 'MARS) => FUNCTION at the moment. (1.0.31.26) + +;; See LP #520695. + +(defmethod mars (x y) (+ x y)) + +#+ nil +(deftest function-type+gfs.2 + (values (type-equal (function-type 'mars) (function-type #'mars)) + (type-equal (function-type 'mars) '(function (t t) *))) + t t) + +;; DEFSTRUCT created functions + +;; These do not yet work because SB-KERNEL:%FUN-NAME does not work on +;; functions defined by DEFSTRUCT. (1.0.35.x) + +;; See LP #520692. + +#+nil +(progn + + (defstruct (struct (:predicate our-struct-p) + (:copier copy-our-struct)) + (a 42 :type fixnum)) + + (deftest function-type+defstruct.1 + (values (type-equal (function-type 'struct-a) + (function-type #'struct-a)) + (type-equal (function-type 'struct-a) + '(function (struct) (values fixnum &optional)))) + t t) + + (deftest function-type+defstruct.2 + (values (type-equal (function-type 'our-struct-p) + (function-type #'our-struct-p)) + (type-equal (function-type 'our-struct-p) + '(function (t) (values (member t nil) &optional)))) + t t) + + (deftest function-type+defstruct.3 + (values (type-equal (function-type 'copy-our-struct) + (function-type #'copy-our-struct)) + (type-equal (function-type 'copy-our-struct) + '(function (struct) (values struct &optional)))) + t t) + + (defstruct (typed-struct :named (:type list) + (:predicate typed-struct-p)) + (a 42 :type fixnum)) + + (deftest function-type+defstruct.4 + (values (type-equal (function-type 'typed-struct-a) + (function-type #'typed-struct-a)) + (type-equal (function-type 'typed-struct-a) + '(function (list) (values fixnum &optional)))) + t t) + + (deftest function-type+defstruct.5 + (values (type-equal (function-type 'typed-struct-p) + (function-type #'typed-struct-p)) + (type-equal (function-type 'typed-struct-p) + '(function (t) (values (member t nil) &optional)))) + t t) + + ) ; #+nil (progn ... + +;; SETF functions + +(defun (setf sun) (value x y &key k1) + (declare (boolean value)) + (declare (fixnum x y)) + (declare (boolean k1)) + (declare (ignore x y k1)) + value) + +(deftest function-type+setf.1 + (values (type-equal (function-type '(setf sun)) + (function-type #'(setf sun))) + (type-equal (function-type '(setf sun)) + '(function ((member nil t) + fixnum fixnum + &key (:k1 (member nil t))) + (values (member nil t) &optional)))) + t t) + +;; Misc + +(deftest function-type+misc.1 + (flet ((nullary ())) + (type-equal (function-type #'nullary) + '(function () (values null &optional)))) + t) + +;;; Defstruct accessor, copier, and predicate + +(deftest defstruct-fun-sources + (let ((copier (find-definition-source #'cl-user::copy-three)) + (accessor (find-definition-source #'cl-user::three-four)) + (predicate (find-definition-source #'cl-user::three-p))) + (values (and (equalp copier accessor) + (equalp copier predicate)) + (equal "test.lisp" + (file-namestring (definition-source-pathname copier))) + (equal '(5) + (definition-source-form-path copier)))) + t + t + t) + +(deftest defstruct-fun-sources-by-name + (let ((copier (car (find-definition-sources-by-name 'cl-user::copy-three :function))) + (accessor (car (find-definition-sources-by-name 'cl-user::three-four :function))) + (predicate (car (find-definition-sources-by-name 'cl-user::three-p :function)))) + (values (and (equalp copier accessor) + (equalp copier predicate)) + (equal "test.lisp" + (file-namestring (definition-source-pathname copier))) + (equal '(5) + (definition-source-form-path copier)))) + t + t + t)