~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to ansi-tests/load-streams.lsp

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
;-*- Mode:     Lisp -*-
 
2
;;;; Author:   Paul Dietz
 
3
;;;; Created:  Tue Jan 13 19:38:10 2004
 
4
;;;; Contains: Load files containing tests for section 21 (streams)
 
5
 
 
6
(in-package :cl-test)
 
7
 
 
8
(load "input-stream-p.lsp")
 
9
(load "output-stream-p.lsp")
 
10
(load "interactive-stream-p.lsp")
 
11
(load "open-stream-p.lsp")
 
12
(load "stream-element-type.lsp")
 
13
(load "streamp.lsp")
 
14
(load "read-byte.lsp")
 
15
(load "peek-char.lsp")
 
16
(load "read-char.lsp")
 
17
(load "read-char-no-hang.lsp")
 
18
(load "terpri.lsp")
 
19
(load "fresh-line.lsp")
 
20
(load "unread-char.lsp")
 
21
(load "write-char.lsp")
 
22
(load "read-line.lsp")
 
23
(load "write-string.lsp")
 
24
(load "write-line.lsp")
 
25
(load "read-sequence.lsp")
 
26
(load "write-sequence.lsp")
 
27
(load "file-length.lsp")
 
28
(load "file-position.lsp")
 
29
(load "file-string-length.lsp")
 
30
(load "open.lsp")
 
31
(load "stream-external-format.lsp")
 
32
(load "with-open-file.lsp")
 
33
(load "listen.lsp")
 
34
(load "clear-input.lsp")
 
35
(load "finish-output.lsp")
 
36
(load "force-output.lsp")
 
37
(load "clear-output.lsp")
 
38
(load "make-synonym-stream.lsp")
 
39
(load "synonym-stream-symbol.lsp")
 
40
(load "make-broadcast-stream.lsp")
 
41
(load "broadcast-stream-streams.lsp")
 
42
(load "make-two-way-stream.lsp")
 
43
(load "two-way-stream-input-stream.lsp")
 
44
(load "two-way-stream-output-stream.lsp")
 
45
(load "echo-stream-input-stream.lsp")
 
46
(load "echo-stream-output-stream.lsp")
 
47
(load "make-echo-stream.lsp")
 
48
(load "concatenated-stream-streams.lsp")
 
49
(load "make-concatenated-stream.lsp")
 
50
(load "get-output-stream-string.lsp")
 
51
(load "make-string-input-stream.lsp")
 
52
(load "make-string-output-stream.lsp")
 
53
(load "with-input-from-string.lsp")
 
54
(load "with-output-to-string.lsp")
 
55
(load "stream-error-stream.lsp")
 
56