2007-11-04 23:01:41 -05:00
|
|
|
#!../src/ikarus -b ikarus.boot --r6rs-script
|
2007-05-15 12:29:47 -04:00
|
|
|
|
2007-10-25 16:27:34 -04:00
|
|
|
;;; Ikarus Scheme -- A compiler for R6RS Scheme.
|
|
|
|
;;; Copyright (C) 2006,2007 Abdulaziz Ghuloum
|
|
|
|
;;;
|
|
|
|
;;; This program is free software: you can redistribute it and/or modify
|
|
|
|
;;; it under the terms of the GNU General Public License version 3 as
|
|
|
|
;;; published by the Free Software Foundation.
|
|
|
|
;;;
|
|
|
|
;;; This program is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
;;; General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
2007-05-15 12:29:47 -04:00
|
|
|
(import (ikarus)
|
2007-05-20 13:11:33 -04:00
|
|
|
(tests reader)
|
2007-10-10 05:28:07 -04:00
|
|
|
(tests lists)
|
2007-06-10 13:32:48 -04:00
|
|
|
(tests bytevectors)
|
2007-09-03 00:17:15 -04:00
|
|
|
(tests strings)
|
2007-10-10 08:24:12 -04:00
|
|
|
(tests hashtables)
|
2007-10-10 05:28:07 -04:00
|
|
|
;(tests numbers)
|
2007-11-04 23:01:41 -05:00
|
|
|
(tests bignums)
|
2007-09-15 03:16:55 -04:00
|
|
|
(tests fxcarry)
|
2007-06-11 20:57:35 -04:00
|
|
|
(tests bignum-to-flonum)
|
2007-11-07 11:00:39 -05:00
|
|
|
(tests string-to-number)
|
|
|
|
(tests input-ports)
|
|
|
|
)
|
2007-05-15 12:29:47 -04:00
|
|
|
|
2007-05-21 23:09:45 -04:00
|
|
|
(define (test-exact-integer-sqrt)
|
|
|
|
(define (f i j inc)
|
|
|
|
(when (< i j)
|
|
|
|
(let-values ([(s r) (exact-integer-sqrt i)])
|
|
|
|
(unless (and (= (+ (* s s) r) i)
|
|
|
|
(< i (* (+ s 1) (+ s 1))))
|
2007-10-25 14:32:26 -04:00
|
|
|
(error 'exact-integer-sqrt "wrong result" i))
|
2007-05-21 23:09:45 -04:00
|
|
|
(f (+ i inc) j inc))))
|
|
|
|
(f 0 10000 1)
|
|
|
|
(f 0 536870911 10000)
|
|
|
|
(f 0 536870911000 536870911)
|
|
|
|
(printf "[exact-integer-sqrt] Happy Happy Joy Joy\n"))
|
|
|
|
|
2007-05-20 13:11:33 -04:00
|
|
|
(test-reader)
|
2007-11-07 11:24:18 -05:00
|
|
|
(test-char-syntax)
|
2007-05-15 12:29:47 -04:00
|
|
|
(test-bytevectors)
|
2007-09-03 00:17:15 -04:00
|
|
|
(test-strings)
|
2007-05-21 23:09:45 -04:00
|
|
|
(test-exact-integer-sqrt)
|
2007-06-10 13:32:48 -04:00
|
|
|
(test-bignum-to-flonum)
|
2007-06-11 20:57:35 -04:00
|
|
|
(test-string-to-number)
|
2007-10-10 05:28:07 -04:00
|
|
|
;(test-div-and-mod)
|
2007-11-04 23:01:41 -05:00
|
|
|
(test-bignums)
|
2007-09-15 03:16:55 -04:00
|
|
|
(test-fxcarry)
|
2007-10-10 05:28:07 -04:00
|
|
|
(test-lists)
|
2007-10-10 08:24:12 -04:00
|
|
|
(test-hashtables)
|
2007-11-07 11:00:39 -05:00
|
|
|
(test-input-ports)
|
2007-05-15 12:29:47 -04:00
|
|
|
(printf "Happy Happy Joy Joy\n")
|