[uim-commit] r2077 - branches/r5rs/sigscheme/test

kzk at freedesktop.org kzk at freedesktop.org
Mon Nov 7 14:02:34 PST 2005


Author: kzk
Date: 2005-11-07 14:02:30 -0800 (Mon, 07 Nov 2005)
New Revision: 2077

Modified:
   branches/r5rs/sigscheme/test/test-srfi38.scm
Log:
* sigscheme/test/test-srfi38.scm
  - add copyright header
  - change to use unittest framework with srfi-6.
    but this code causes SIGSEGV, what's wrong?


Modified: branches/r5rs/sigscheme/test/test-srfi38.scm
===================================================================
--- branches/r5rs/sigscheme/test/test-srfi38.scm	2005-11-07 21:25:44 UTC (rev 2076)
+++ branches/r5rs/sigscheme/test/test-srfi38.scm	2005-11-07 22:02:30 UTC (rev 2077)
@@ -1,21 +1,54 @@
-;; No assertive tests for now, just print something and see if we bloat.                                                              ;(load "test/unittest.scm")
+;;  FileName : test-srfi38.scm
+;;  About    : unit test for SRFI-38
+;;
+;;  Copyright (C) 2005      by Kazuki Ohta (mover at hct.zaq.ne.jp)
+;;
+;;  All rights reserved.
+;;
+;;  Redistribution and use in source and binary forms, with or without
+;;  modification, are permitted provided that the following conditions
+;;  are met:
+;;
+;;  1. Redistributions of source code must retain the above copyright
+;;     notice, this list of conditions and the following disclaimer.
+;;  2. Redistributions in binary form must reproduce the above copyright
+;;     notice, this list of conditions and the following disclaimer in the
+;;     documentation and/or other materials provided with the distribution.
+;;  3. Neither the name of authors nor the names of its contributors
+;;     may be used to endorse or promote products derived from this software
+;;     without specific prior written permission.
+;;
+;;  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
+;;  IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+;;  THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+;;  PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR
+;;  CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+;;  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+;;  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+;;  PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+;;  LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+;;  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+;;  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+(load "./test/unittest.scm")
+
 (use srfi-38)
+(use srfi-6)
 
-(let* ((s "abc")
+(let* ((outs (open-output-string))
+       (s "abc")
        (convolution `(,s 1 #(,s b) (2) () ,s)))
   ; go crazy with mutators
   (set-car! (cdr convolution) convolution)
   (vector-set! (caddr convolution) 1 (cddr convolution))
   (set-cdr! (cadddr convolution) (cdr convolution))
-  (write-with-shared-structure convolution))
-(display " <-- computed output\n")
-(display "#1=(#2=\"abc\" . #3=(#1# . #4=(#(#2# #4#) (2 . #3#) () #2#))) <-- expected output\n")
+  (write-with-shared-structure convolution outs)
+  (assert-equal? "srfi38 #1" "#1=(#2=\"abc\" . #3=(#1# . #4=(#(#2# #4#) (2 . #3#) () #2#)))" (get-output-string outs)))
 
-(let* ((a-pair '(kar . kdr))
+(let* ((outs (open-output-string))
+       (a-pair '(kar . kdr))
             (convolution (eval (list 'lambda () a-pair) (scheme-report-environment 5))))
        (set-cdr! a-pair convolution)
-       (write-with-shared-structure convolution))
-(display " <-- computed output\n")
-(display "#1=#<closure:(() (kar . #1#))> <-- expected output\n")
+       (write-with-shared-structure convolution outs)
+       (assert-equal? "#1=#<closure:(() (kar . #1#))>" outs))
 
-;(total-report)
+(total-report)



More information about the uim-commit mailing list