switching to scheme #t, #f, and () values
porting code to sort out which NILs are false and which are
empty lists
switching to scheme-style special forms. however you feel about
scheme names vs. CL names, using both is silly.
mostly switching to scheme predicate names, with compatibility
aliases for now. adding set-constant! to make this efficient.
adding null?, eqv?, assq, assv, assoc, memq, memv, member
adding 2-argument form of if
allowing else as final cond condition
looking for init file in same directory as executable, so flisp
can be started from anywhere
renaming T to FL_T, since exporting a 1-character symbol is
not very nice
adding opaque type boilerplate example file
adding correctness checking for the pattern-lambda benchmark
bugfix in int2str
2009-01-28 20:04:23 -05:00
|
|
|
; -*- scheme -*-
|
2008-06-30 21:54:22 -04:00
|
|
|
(define (every-int n)
|
|
|
|
(list (fixnum n) (int8 n) (uint8 n) (int16 n) (uint16 n) (int32 n) (uint32 n)
|
|
|
|
(int64 n) (uint64 n)))
|
|
|
|
|
|
|
|
(define (every-sint n)
|
|
|
|
(list (fixnum n) (int8 n) (int16 n) (int32 n) (int64 n)))
|
|
|
|
|
|
|
|
(define (each f l)
|
2009-01-31 20:53:58 -05:00
|
|
|
(if (atom? l) ()
|
|
|
|
(begin (f (car l))
|
|
|
|
(each f (cdr l)))))
|
2008-06-30 21:54:22 -04:00
|
|
|
|
|
|
|
(define (each^2 f l m)
|
|
|
|
(each (lambda (o) (each (lambda (p) (f o p)) m)) l))
|
|
|
|
|
|
|
|
(define (test-lt a b)
|
|
|
|
(each^2 (lambda (neg pos)
|
switching to scheme #t, #f, and () values
porting code to sort out which NILs are false and which are
empty lists
switching to scheme-style special forms. however you feel about
scheme names vs. CL names, using both is silly.
mostly switching to scheme predicate names, with compatibility
aliases for now. adding set-constant! to make this efficient.
adding null?, eqv?, assq, assv, assoc, memq, memv, member
adding 2-argument form of if
allowing else as final cond condition
looking for init file in same directory as executable, so flisp
can be started from anywhere
renaming T to FL_T, since exporting a 1-character symbol is
not very nice
adding opaque type boilerplate example file
adding correctness checking for the pattern-lambda benchmark
bugfix in int2str
2009-01-28 20:04:23 -05:00
|
|
|
(begin
|
2008-06-30 21:54:22 -04:00
|
|
|
(eval `(assert (= -1 (compare ,neg ,pos))))
|
|
|
|
(eval `(assert (= 1 (compare ,pos ,neg))))))
|
|
|
|
a
|
|
|
|
b))
|
|
|
|
|
|
|
|
(define (test-eq a b)
|
|
|
|
(each^2 (lambda (a b)
|
switching to scheme #t, #f, and () values
porting code to sort out which NILs are false and which are
empty lists
switching to scheme-style special forms. however you feel about
scheme names vs. CL names, using both is silly.
mostly switching to scheme predicate names, with compatibility
aliases for now. adding set-constant! to make this efficient.
adding null?, eqv?, assq, assv, assoc, memq, memv, member
adding 2-argument form of if
allowing else as final cond condition
looking for init file in same directory as executable, so flisp
can be started from anywhere
renaming T to FL_T, since exporting a 1-character symbol is
not very nice
adding opaque type boilerplate example file
adding correctness checking for the pattern-lambda benchmark
bugfix in int2str
2009-01-28 20:04:23 -05:00
|
|
|
(begin
|
2008-06-30 21:54:22 -04:00
|
|
|
(eval `(assert (= 0 (compare ,a ,b))))))
|
|
|
|
a
|
|
|
|
b))
|
|
|
|
|
|
|
|
(test-lt (every-sint -1) (every-int 1))
|
|
|
|
(test-lt (every-int 0) (every-int 1))
|
|
|
|
(test-eq (every-int 88) (every-int 88))
|
|
|
|
(test-eq (every-sint -88) (every-sint -88))
|
|
|
|
|
|
|
|
(define (test-square a)
|
|
|
|
(each (lambda (i) (eval `(assert (>= (* ,i ,i) 0))))
|
|
|
|
a))
|
|
|
|
|
|
|
|
(test-square (every-sint -67))
|
|
|
|
(test-square (every-int 3))
|
|
|
|
(test-square (every-int 0x80000000))
|
|
|
|
(test-square (every-sint 0x80000000))
|
|
|
|
(test-square (every-sint -0x80000000))
|
|
|
|
|
|
|
|
(assert (= (* 128 0x02000001) 0x100000080))
|
|
|
|
|
|
|
|
(assert (= (/ 1) 1))
|
|
|
|
(assert (= (/ -1) -1))
|
|
|
|
(assert (= (/ 2.0) 0.5))
|
|
|
|
|
2009-03-26 23:06:55 -04:00
|
|
|
(assert (= (- 4999950000 4999941999) 8001))
|
|
|
|
|
2008-06-30 21:54:22 -04:00
|
|
|
; tricky cases involving INT_MIN
|
|
|
|
(assert (< (- #uint32(0x80000000)) 0))
|
|
|
|
(assert (> (- #int32(0x80000000)) 0))
|
|
|
|
(assert (< (- #uint64(0x8000000000000000)) 0))
|
|
|
|
(assert (> (- #int64(0x8000000000000000)) 0))
|
|
|
|
|
2009-05-30 17:13:13 -04:00
|
|
|
(assert (not (equal? #int64(0x8000000000000000) #uint64(0x8000000000000000))))
|
|
|
|
(assert (equal? (+ #int64(0x4000000000000000) #int64(0x4000000000000000))
|
|
|
|
#uint64(0x8000000000000000)))
|
|
|
|
(assert (equal? (* 2 #int64(0x4000000000000000))
|
|
|
|
#uint64(0x8000000000000000)))
|
2008-06-30 21:54:22 -04:00
|
|
|
|
2009-05-30 17:13:13 -04:00
|
|
|
(assert (equal? (uint64 (double -123)) #uint64(0xffffffffffffff85)))
|
2008-10-07 21:14:23 -04:00
|
|
|
|
2009-05-30 17:13:13 -04:00
|
|
|
(assert (equal? (string 'sym #byte(65) #wchar(945) "blah") "symA\u03B1blah"))
|
2008-08-07 01:08:10 -04:00
|
|
|
|
2009-04-15 19:54:43 -04:00
|
|
|
; NaNs
|
|
|
|
(assert (equal? +nan.0 +nan.0))
|
|
|
|
(assert (not (= +nan.0 +nan.0)))
|
|
|
|
(assert (not (= +nan.0 -nan.0)))
|
|
|
|
(assert (equal? (< +nan.0 3) (> 3 +nan.0)))
|
|
|
|
(assert (equal? (< +nan.0 (double 3)) (> (double 3) +nan.0)))
|
|
|
|
(assert (equal? (< +nan.0 3) (> (double 3) +nan.0)))
|
|
|
|
(assert (equal? (< +nan.0 (double 3)) (> 3 +nan.0)))
|
|
|
|
(assert (equal? (< +nan.0 3) (< +nan.0 (double 3))))
|
|
|
|
(assert (equal? (> +nan.0 3) (> +nan.0 (double 3))))
|
|
|
|
(assert (equal? (< 3 +nan.0) (> +nan.0 (double 3))))
|
|
|
|
(assert (equal? (> 3 +nan.0) (> (double 3) +nan.0)))
|
|
|
|
(assert (not (>= +nan.0 +nan.0)))
|
|
|
|
|
2009-05-13 21:30:25 -04:00
|
|
|
; -0.0 etc.
|
|
|
|
(assert (not (equal? 0.0 0)))
|
|
|
|
(assert (equal? 0.0 0.0))
|
|
|
|
(assert (not (equal? -0.0 0.0)))
|
|
|
|
(assert (not (equal? -0.0 0)))
|
|
|
|
(assert (not (eqv? 0.0 0)))
|
|
|
|
(assert (not (eqv? -0.0 0)))
|
|
|
|
(assert (not (eqv? -0.0 0.0)))
|
|
|
|
(assert (= 0.0 -0.0))
|
|
|
|
|
2008-12-12 16:06:20 -05:00
|
|
|
; this crashed once
|
|
|
|
(for 1 10 (lambda (i) 0))
|
2008-08-07 01:08:10 -04:00
|
|
|
|
2009-03-26 23:06:55 -04:00
|
|
|
; long argument lists
|
|
|
|
(assert (= (apply + (iota 100000)) 4999950000))
|
|
|
|
|
2009-06-06 17:15:54 -04:00
|
|
|
(define as (apply list* (map-int (lambda (x) (gensym)) (+ MAX_ARGS 1))))
|
|
|
|
(define f (compile `(lambda ,as ,(lastcdr as))))
|
|
|
|
(assert (equal? (apply f (iota (+ MAX_ARGS 0))) `()))
|
|
|
|
(assert (equal? (apply f (iota (+ MAX_ARGS 1))) `(,MAX_ARGS)))
|
|
|
|
(assert (equal? (apply f (iota (+ MAX_ARGS 2))) `(,MAX_ARGS ,(+ MAX_ARGS 1))))
|
|
|
|
|
|
|
|
(define as (map-int (lambda (x) (gensym)) 1000))
|
|
|
|
(define f (compile `(lambda ,as ,(car (last-pair as)))))
|
|
|
|
(assert (equal? (apply f (iota 1000)) 999))
|
|
|
|
|
|
|
|
(define as (apply list* (map-int (lambda (x) (gensym)) 995)))
|
|
|
|
(define f (compile `(lambda ,as ,(lastcdr as))))
|
|
|
|
(assert (equal? (apply f (iota 994)) '()))
|
|
|
|
(assert (equal? (apply f (iota 995)) '(994)))
|
|
|
|
(assert (equal? (apply f (iota 1000)) '(994 995 996 997 998 999)))
|
|
|
|
|
2008-06-30 21:54:22 -04:00
|
|
|
; ok, a couple end-to-end tests as well
|
|
|
|
(define (fib n) (if (< n 2) n (+ (fib (- n 1)) (fib (- n 2)))))
|
2009-05-30 17:13:13 -04:00
|
|
|
(assert (equal? (fib 20) 6765))
|
2008-06-30 21:54:22 -04:00
|
|
|
|
|
|
|
(load "color.lsp")
|
2009-05-30 17:13:13 -04:00
|
|
|
(assert (equal? (color-pairs (generate-5x5-pairs) '(a b c d e))
|
|
|
|
'((23 . a) (9 . a) (22 . b) (17 . d) (14 . d) (8 . b) (21 . e)
|
|
|
|
(19 . b) (16 . c) (13 . c) (11 . b) (7 . e) (24 . c) (20 . d)
|
|
|
|
(18 . e) (15 . a) (12 . a) (10 . e) (6 . d) (5 . c) (4 . e)
|
|
|
|
(3 . d) (2 . c) (0 . b) (1 . a))))
|
2008-06-30 21:54:22 -04:00
|
|
|
|
2009-05-19 23:39:20 -04:00
|
|
|
; hashing strange things
|
|
|
|
(assert (equal?
|
|
|
|
(hash '#0=(1 1 #0# . #0#))
|
|
|
|
(hash '#1=(1 1 #1# 1 1 #1# . #1#))))
|
|
|
|
|
|
|
|
(assert (not (equal?
|
|
|
|
(hash '#0=(1 1 #0# . #0#))
|
|
|
|
(hash '#1=(1 2 #1# 1 1 #1# . #1#)))))
|
|
|
|
|
|
|
|
(assert (equal?
|
|
|
|
(hash '#0=((1 . #0#) . #0#))
|
|
|
|
(hash '#1=((1 . #1#) (1 . #1#) . #1#))))
|
|
|
|
|
|
|
|
(assert (not (equal?
|
|
|
|
(hash '#0=((1 . #0#) . #0#))
|
|
|
|
(hash '#1=((2 . #1#) (1 . #1#) . #1#)))))
|
|
|
|
|
|
|
|
(assert (not (equal?
|
|
|
|
(hash '#0=((1 . #0#) . #0#))
|
|
|
|
(hash '#1=((1 . #1#) (2 . #1#) . #1#)))))
|
|
|
|
|
2009-05-20 14:52:09 -04:00
|
|
|
(assert (equal?
|
|
|
|
(hash '(#0=(#0#) 0))
|
|
|
|
(hash '(#1=(((((#1#))))) 0))))
|
|
|
|
|
|
|
|
(assert (not (equal?
|
|
|
|
(hash '(#0=(#0#) 0))
|
|
|
|
(hash '(#1=(((((#1#))))) 1)))))
|
|
|
|
|
2009-05-19 23:39:20 -04:00
|
|
|
(assert (equal?
|
|
|
|
(hash #0=[1 [2 [#0#]] 3])
|
|
|
|
(hash #1=[1 [2 [[1 [2 [#1#]] 3]]] 3])))
|
|
|
|
|
|
|
|
(assert (not (equal?
|
|
|
|
(hash #0=[1 [2 [#0#]] 3])
|
|
|
|
(hash #1=[1 [2 [[5 [2 [#1#]] 3]]] 3]))))
|
|
|
|
|
|
|
|
(assert (equal?
|
|
|
|
(hash #0=[1 #0# [2 [#0#]] 3])
|
|
|
|
(hash #1=[1 #1# [2 [[1 #1# [2 [#1#]] 3]]] 3])))
|
|
|
|
|
|
|
|
(assert (not (equal?
|
|
|
|
(hash #0=[1 #0# [2 [#0#]] 3])
|
|
|
|
(hash #1=[6 #1# [2 [[1 #1# [2 [#1#]] 3]]] 3]))))
|
|
|
|
|
|
|
|
(assert (equal?
|
|
|
|
(hash [1 [2 [[1 1 [2 [1]] 3]]] 3])
|
|
|
|
(hash [1 [2 [[1 1 [2 [1]] 3]]] 3])))
|
|
|
|
|
|
|
|
(assert (not (equal?
|
|
|
|
(hash [6 1 [2 [[3 1 [2 [1]] 3]]] 3])
|
|
|
|
(hash [6 1 [2 [[1 1 [2 [1]] 3]]] 3]))))
|
|
|
|
|
2009-05-20 00:30:00 -04:00
|
|
|
(assert (equal? (hash '#0=(1 . #0#))
|
|
|
|
(hash '#1=(1 1 . #1#))))
|
|
|
|
|
|
|
|
(assert (not (equal? (hash '#0=(1 1 . #0#))
|
|
|
|
(hash '#1=(1 #0# . #1#)))))
|
|
|
|
|
|
|
|
(assert (not (equal? (hash (iota 10))
|
|
|
|
(hash (iota 20)))))
|
|
|
|
|
|
|
|
(assert (not (equal? (hash (iota 41))
|
|
|
|
(hash (iota 42)))))
|
|
|
|
|
2008-06-30 21:54:22 -04:00
|
|
|
(princ "all tests pass\n")
|
2009-01-31 20:53:58 -05:00
|
|
|
#t
|