Update tests for 64 bit Windows builds
[sbcl.git] / tests / interface.pure.lisp
1 ;;;; tests for problems in the interface presented to the user/programmer
2
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.
13
14 (in-package :cl-user)
15
16 (load "test-util.lisp")
17 (load "compiler-test-util.lisp")
18 (use-package :test-util)
19 \f
20 ;;;; properties of symbols, e.g. presence of doc strings for public symbols
21
22 ;;; FIXME: It would probably be good to require here that every
23 ;;; external symbol either has a doc string or has some good excuse
24 ;;; (like being an accessor for a structure which has a doc string).
25 \f
26 ;;;; tests of interface machinery
27
28 ;;; APROPOS should accept a package designator, not just a package, and
29 ;;; furthermore do the right thing when it gets a package designator.
30 ;;; (bug reported and fixed by Alexey Dejneka sbcl-devel 2001-10-17)
31 (assert (< 0
32            (length (apropos-list "PRINT" :cl))
33            (length (apropos-list "PRINT"))))
34 ;;; Further, it should correctly deal with the external-only flag (bug
35 ;;; reported by cliini on #lisp IRC 2003-05-30, fixed in sbcl-0.8.0.1x
36 ;;; by CSR)
37 (assert (= (length (apropos-list "" "CL"))
38            (length (apropos-list "" "CL" t))))
39 (assert (< 0
40            (length (apropos-list "" "SB-VM" t))
41            (length (apropos-list "" "SB-VM"))))
42 \f
43 ;;; DESCRIBE shouldn't fail on rank-0 arrays (bug reported and fixed
44 ;;; by Lutz Euler sbcl-devel 2002-12-03)
45 (describe #0a0)
46 (describe #(1 2 3))
47 (describe #2a((1 2) (3 4)))
48
49 ;;; TYPEP, SUBTYPEP, UPGRADED-ARRAY-ELEMENT-TYPE and
50 ;;; UPGRADED-COMPLEX-PART-TYPE should be able to deal with NIL as an
51 ;;; environment argument
52 (typep 1 'fixnum nil)
53 (subtypep 'fixnum 'integer nil)
54 (upgraded-array-element-type '(mod 5) nil)
55 (upgraded-complex-part-type '(single-float 0.0 1.0) nil)
56
57 ;;; We should have documentation for our extension package:
58 (assert (documentation (find-package "SB-EXT") t))
59
60 ;;; DECLARE should not be a special operator
61 (assert (not (special-operator-p 'declare)))
62
63 ;;; WITH-TIMEOUT should accept more than one form in its body.
64 (with-test (:name :with-timeout-forms)
65   (handler-bind ((sb-ext:timeout #'continue))
66     (sb-ext:with-timeout 3
67       (sleep 2)
68       (sleep 2))))
69
70 ;;; SLEEP should not cons
71 (with-test (:name (sleep :non-consing) :fails-on '(or (not :x86-64) :win32))
72   (ctu:assert-no-consing (sleep 0.00001)))
73
74 ;;; SLEEP should work with large integers as well -- no timers
75 ;;; on win32, so don't test there.
76 (with-test (:name (sleep pretty-much-forever) :skipped-on :win32)
77   (assert (eq :timeout
78               (handler-case
79                   (sb-ext:with-timeout 1
80                     (sleep (ash 1 (* 2 sb-vm:n-word-bits))))
81                 (sb-ext:timeout ()
82                   :timeout)))))
83
84 ;;; DOCUMENTATION should return nil, not signal slot-unbound
85 (documentation 'fixnum 'type)
86 (documentation 'class 'type)
87 (documentation (find-class 'class) 'type)
88 (documentation 'foo 'structure)
89
90 ;;; DECODE-UNIVERSAL-TIME should accept second-resolution time-zones.
91 (macrolet ((test (ut time-zone list)
92              (destructuring-bind (sec min hr date mon yr day tz)
93                  list
94                `(multiple-value-bind (sec min hr date mon yr day dst tz)
95                     (decode-universal-time ,ut ,time-zone)
96                   (declare (ignore dst))
97                   (assert (= sec ,sec))
98                   (assert (= min ,min))
99                   (assert (= hr ,hr))
100                   (assert (= date ,date))
101                   (assert (= mon ,mon))
102                   (assert (= yr ,yr))
103                   (assert (= day ,day))
104                   (assert (= tz ,tz))))))
105   (test (* 86400 365) -1/3600 (1 0 0 1 1 1901 1 -1/3600))
106   (test (* 86400 365) 0 (0 0 0 1 1 1901 1 0))
107   (test (* 86400 365) 1/3600 (59 59 23 31 12 1900 0 1/3600)))
108
109 ;;; DECODE-UNIVERSAL-TIME shouldn't fail when the time is outside UNIX
110 ;;; 32-bit time_t and a timezone wasn't passed
111 (decode-universal-time 0 nil)
112
113 ;;; ENCODE-UNIVERSAL-TIME should be able to encode the universal time
114 ;;; 0 when passed a representation in a timezone where the
115 ;;; representation of 0 as a decoded time is in 1899.
116 (encode-universal-time 0 0 23 31 12 1899 1)
117
118 ;;; DISASSEMBLE shouldn't fail on purified functions
119 (disassemble 'cl:+)
120 (disassemble 'sb-ext:run-program)
121
122 ;;; minimal test of GC: see stress-gc.{sh,lisp} for a more
123 ;;; comprehensive test.
124 (loop repeat 2
125       do (compile nil '(lambda (x) x))
126       do (sb-ext:gc :full t))
127
128 ;;; On x86-64, the instruction definitions for CMP*[PS][SD] were broken
129 ;;; so that the disassembler threw an error when they were used with
130 ;;; one operand in memory.
131 (with-test (:name :bug-814702)
132   (disassemble (lambda (x)
133                  (= #C(2.0f0 3.0f0)
134                     (the (complex single-float) x))))
135   (disassemble (lambda (x y)
136                  (= (the (complex single-float) x)
137                     (the (complex single-float) y)))))