~peter-pearse/ubuntu/natty/guile-1.8/prop001

« back to all changes in this revision

Viewing changes to test-suite/standalone/test-use-srfi

  • Committer: Bazaar Package Importer
  • Author(s): Steve Langasek
  • Date: 2009-06-04 19:01:38 UTC
  • mfrom: (8.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090604190138-1ao3t6sj31cqvcfe
Tags: 1.8.6+1-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - Build with -Wno-error.
  - Build with thread support. Some guile-using programs like autogen need it.
  - Add debian/guile-1.8-libs.shlibs: Thread support breaks ABI, bump the soname.
* Dropped changes:
  - libltdl3-dev -> libltdl7-dev: current libltdl-dev Provides: both.
  - debian/patches/libtool-ftbfs.diff: integrated upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
# Test that two srfi numbers on the command line work.
21
21
#
22
 
guile -q --use-srfi=1,10 >/dev/null <<EOF
 
22
guile -q -l /home/ludo/src/guile/libguile/stack-limit-calibration.scm --use-srfi=1,10 >/dev/null <<EOF
23
23
(if (and (defined? 'partition)
24
24
         (defined? 'define-reader-ctor))
25
25
    (exit 0)   ;; good
38
38
# `top-repl' the core bindings got ahead of anything --use-srfi gave.
39
39
#
40
40
 
41
 
guile -q --use-srfi=1 >/dev/null <<EOF
 
41
guile -q -l /home/ludo/src/guile/libguile/stack-limit-calibration.scm --use-srfi=1 >/dev/null <<EOF
42
42
(catch #t
43
43
  (lambda ()
44
44
    (iota 2 3 4))
56
56
# exercises duplicates handling in `top-repl' versus `use-srfis' (in
57
57
# boot-9.scm).
58
58
#
59
 
guile -q --use-srfi=17 >/dev/null <<EOF
 
59
guile -q -l /home/ludo/src/guile/libguile/stack-limit-calibration.scm --use-srfi=17 >/dev/null <<EOF
60
60
(if (procedure-with-setter? car)
61
61
    (exit 0)   ;; good
62
62
    (exit 1))  ;; bad