srfi-71.test 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. ;;;; srfi-71.test --- Extended 'let' syntax. -*- mode: scheme; -*-
  2. ;;;;
  3. ;;;; Copyright (C) 2018 Free Software Foundation, Inc.
  4. ;;;;
  5. ;;;; This library is free software; you can redistribute it and/or
  6. ;;;; modify it under the terms of the GNU Lesser General Public
  7. ;;;; License as published by the Free Software Foundation; either
  8. ;;;; version 3 of the License, or (at your option) any later version.
  9. ;;;;
  10. ;;;; This library 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 GNU
  13. ;;;; Lesser General Public License for more details.
  14. ;;;;
  15. ;;;; You should have received a copy of the GNU Lesser General Public
  16. ;;;; License along with this library; if not, write to the Free Software
  17. ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  18. (define-module (test-suite i18n)
  19. #:use-module (srfi srfi-71)
  20. #:use-module (test-suite lib))
  21. (pass-if-equal "let"
  22. '(1 2 3)
  23. (let ((x y z (values 1 2 3)))
  24. (list x y z)))
  25. (pass-if-equal "let*"
  26. 6
  27. (let* ((x y (values 1 2))
  28. (z (+ x y)))
  29. (* z 2)))
  30. (pass-if-equal "letrec"
  31. #t
  32. (letrec ((odd? even?
  33. (values (lambda (n) (even? (- n 1)))
  34. (lambda (n) (or (zero? n) (odd? (- n 1)))))))
  35. (and (odd? 77) (even? 42))))
  36. (pass-if-exception "too few values"
  37. exception:wrong-num-args
  38. ;; With compiled code we would get:
  39. ;; '(vm-error . "Wrong number of values returned to continuations")
  40. (let ((x y 1))
  41. (+ x y)))