Changes from arch/CVS synchronization
[bpt/guile.git] / test-suite / tests / srfi-17.test
CommitLineData
7171f1ab
DH
1;;;; srfi-17.test --- test suite for Guile's SRFI-17 functions. -*- scheme -*-
2;;;;
6e7d5622 3;;;; Copyright (C) 2001, 2003, 2005, 2006 Free Software Foundation, Inc.
7171f1ab
DH
4;;;;
5;;;; This program is free software; you can redistribute it and/or modify
6;;;; it under the terms of the GNU General Public License as published by
7;;;; the Free Software Foundation; either version 2, or (at your option)
8;;;; any later version.
9;;;;
10;;;; This program is distributed in the hope that it will be useful,
11;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
12;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13;;;; GNU General Public License for more details.
14;;;;
15;;;; You should have received a copy of the GNU General Public License
16;;;; along with this software; see the file COPYING. If not, write to
92205699
MV
17;;;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18;;;; Boston, MA 02110-1301 USA
7171f1ab 19
d6e04e7c
DH
20(define-module (test-suite test-srfi-17)
21 :use-module (test-suite lib)
22 :use-module (srfi srfi-17))
23
7171f1ab 24
3c1f825c
KR
25(pass-if "cond-expand srfi-17"
26 (cond-expand (srfi-17 #t)
27 (else #f)))
28
29;;
30;; car
31;;
32
33(with-test-prefix "car"
34
8e1973d9
KR
35 ;; this test failed in guile 1.8.1 and 1.6.8 and earlier, since `define'
36 ;; didn't set a name on a procedure-with-setter
37 (pass-if "procedure-name"
38 (if (memq 'procnames (debug-options)) ;; enabled by default
39 (eq? 'car (procedure-name car))
40 (throw 'unsupported)))
41
3c1f825c
KR
42 (pass-if "set! (car x)"
43 (let ((lst (list 1)))
44 (set! (car lst) 2)
45 (eqv? 2 (car lst)))))
46
47;;
48;; set!
49;;
50
7171f1ab
DH
51(with-test-prefix "set!"
52
53 (with-test-prefix "target is not procedure with setter"
54
55 (pass-if-exception "(set! (symbol->string 'x) 1)"
56 exception:wrong-type-arg
57 (set! (symbol->string 'x) 1))
58
59 (pass-if-exception "(set! '#f 1)"
64daa012 60 exception:bad-variable
d6e04e7c 61 (eval '(set! '#f 1) (interaction-environment)))))
3c1f825c
KR
62
63;;
64;; setter
65;;
66
67(with-test-prefix "setter"
68
69 (pass-if-exception "set! (setter x)" (cons 'misc-error ".*")
70 (set! (setter car) noop))
71
72 (pass-if "car"
73 (eq? set-car! (setter car))))