1.0.13.45: close the fd before deleting / moving files on CLOSE :ABORT T
[sbcl/simd.git] / tests / mop-13.impure-cload.lisp
blob7dc5656a7b8e25cc00761a0b0760ee66788d3562
1 ;;;; miscellaneous side-effectful tests of the MOP
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; While most of SBCL is derived from the CMU CL system, the test
7 ;;;; files (like this one) were written from scratch after the fork
8 ;;;; from CMU CL.
9 ;;;;
10 ;;;; This software is in the public domain and is provided with
11 ;;;; absolutely no warranty. See the COPYING and CREDITS files for
12 ;;;; more information.
14 ;;; this file attempts to test possible metacircularity issues arising
15 ;;; from adding slots to generic functions in odd places.
17 (defpackage "MOP-13"
18 (:use "CL" "SB-MOP"))
20 (in-package "MOP-13")
22 (defclass super-funcallable-mixin ()
23 ((abc :accessor abc :initarg :abc))
24 (:metaclass funcallable-standard-class))
26 (defclass sub-generic-function1 (standard-generic-function
27 super-funcallable-mixin) ()
28 (:metaclass funcallable-standard-class))
30 (defclass sub-method1 (standard-method) ())
32 (defgeneric myfun1 (a b)
33 (:generic-function-class sub-generic-function1)
34 (:method-class sub-method1))
36 (defvar *count1* 0)
38 (defmethod myfun1 (a b)
39 (incf *count1*))
41 (myfun1 2 3)
42 (assert (= *count1* 1))
43 (myfun1 t nil)
44 (assert (= *count1* 2))
46 (defmethod myfun1 ((a integer) (b integer))
47 (incf *count1* 2))
49 (myfun1 2 3)
50 (assert (= *count1* 4))
51 (myfun1 t nil)
52 (assert (= *count1* 5))
54 ;;; Friendlier superclass order test case
55 (defclass sub-generic-function2 (super-funcallable-mixin
56 standard-generic-function) ()
57 (:metaclass funcallable-standard-class))
59 (defclass sub-method2 (standard-method) ())
61 (defgeneric myfun2 (a b)
62 (:generic-function-class sub-generic-function2)
63 (:method-class sub-method2))
65 (defvar *count2* 0)
67 (defmethod myfun2 (a b)
68 (incf *count2*))
70 (myfun2 2 3)
71 (assert (= *count2* 1))
72 (myfun2 t nil)
73 (assert (= *count2* 2))
75 (defmethod myfun2 ((a integer) (b integer))
76 (incf *count2* 2))
78 (myfun2 2 3)
79 (assert (= *count2* 4))
80 (myfun2 t nil)
81 (assert (= *count2* 5))