diff --git a/test-suite/tests/srfi-1.test b/test-suite/tests/srfi-1.test index 9ae10f2b4..10f7c1e75 100644 --- a/test-suite/tests/srfi-1.test +++ b/test-suite/tests/srfi-1.test @@ -1,6 +1,6 @@ ;;;; srfi-1.test --- Test suite for Guile's SRFI-1 functions. -*- scheme -*- ;;;; -;;;; Copyright 2003, 2004 Free Software Foundation, Inc. +;;;; Copyright 2003, 2004, 2005 Free Software Foundation, Inc. ;;;; ;;;; This program is free software; you can redistribute it and/or modify ;;;; it under the terms of the GNU General Public License as published by @@ -637,6 +637,17 @@ (pass-if "four improper" (equal? '(1 2 3 . 4) (list-copy '(1 2 3 . 4)))) (pass-if "five improper" (equal? '(1 2 3 4 . 5) (list-copy '(1 2 3 4 . 5))))) +;; +;; lset= +;; + +(with-test-prefix "lset=" + + ;; in guile 1.6.7 and earlier, lset= incorrectly demanded at least one + ;; list arg + (pass-if "no args" + (eq? #t (lset= eq?)))) + ;; ;; map ;;