Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Karsten Poeck
ansi-test
Commits
c3539cc0
Commit
c3539cc0
authored
Aug 31, 2015
by
Daniel Kochmański
Browse files
restruct: move streams tests to separate directory
Signed-off-by:
Daniel Kochmański
<
daniel@turtleware.eu
>
parent
1924a963
Changes
49
Hide whitespace changes
Inline
Side-by-side
load-streams.lsp
View file @
c3539cc0
...
...
@@ -5,53 +5,53 @@
(in-package :cl-test)
(load "input-stream-p.lsp")
(load "output-stream-p.lsp")
(load "interactive-stream-p.lsp")
(load "open-stream-p.lsp")
(load "stream-element-type.lsp")
(load "streamp.lsp")
(load "read-byte.lsp")
(load "peek-char.lsp")
(load "read-char.lsp")
(load "read-char-no-hang.lsp")
(load "terpri.lsp")
(load "fresh-line.lsp")
(load "unread-char.lsp")
(load "write-char.lsp")
(load "read-line.lsp")
(load "write-string.lsp")
(load "write-line.lsp")
(load "read-sequence.lsp")
(load "write-sequence.lsp")
(load "file-length.lsp")
(load "file-position.lsp")
(load "file-string-length.lsp")
(load "open.lsp")
(load "stream-external-format.lsp")
(load "with-open-file.lsp")
(load "with-open-stream.lsp")
(load "listen.lsp")
(load "clear-input.lsp")
(load "finish-output.lsp")
(load "force-output.lsp")
(load "clear-output.lsp")
(load "make-synonym-stream.lsp")
(load "synonym-stream-symbol.lsp")
(load "make-broadcast-stream.lsp")
(load "broadcast-stream-streams.lsp")
(load "make-two-way-stream.lsp")
(load "two-way-stream-input-stream.lsp")
(load "two-way-stream-output-stream.lsp")
(load "echo-stream-input-stream.lsp")
(load "echo-stream-output-stream.lsp")
(load "make-echo-stream.lsp")
(load "concatenated-stream-streams.lsp")
(load "make-concatenated-stream.lsp")
(load "get-output-stream-string.lsp")
(load "make-string-input-stream.lsp")
(load "make-string-output-stream.lsp")
(load "with-input-from-string.lsp")
(load "with-output-to-string.lsp")
(load "stream-error-stream.lsp")
(load "
streams/
input-stream-p.lsp")
(load "
streams/
output-stream-p.lsp")
(load "
streams/
interactive-stream-p.lsp")
(load "
streams/
open-stream-p.lsp")
(load "
streams/
stream-element-type.lsp")
(load "
streams/
streamp.lsp")
(load "
streams/
read-byte.lsp")
(load "
streams/
peek-char.lsp")
(load "
streams/
read-char.lsp")
(load "
streams/
read-char-no-hang.lsp")
(load "
streams/
terpri.lsp")
(load "
streams/
fresh-line.lsp")
(load "
streams/
unread-char.lsp")
(load "
streams/
write-char.lsp")
(load "
streams/
read-line.lsp")
(load "
streams/
write-string.lsp")
(load "
streams/
write-line.lsp")
(load "
streams/
read-sequence.lsp")
(load "
streams/
write-sequence.lsp")
(load "
streams/
file-length.lsp")
(load "
streams/
file-position.lsp")
(load "
streams/
file-string-length.lsp")
(load "
streams/
open.lsp")
(load "
streams/
stream-external-format.lsp")
(load "
streams/
with-open-file.lsp")
(load "
streams/
with-open-stream.lsp")
(load "
streams/
listen.lsp")
(load "
streams/
clear-input.lsp")
(load "
streams/
finish-output.lsp")
(load "
streams/
force-output.lsp")
(load "
streams/
clear-output.lsp")
(load "
streams/
make-synonym-stream.lsp")
(load "
streams/
synonym-stream-symbol.lsp")
(load "
streams/
make-broadcast-stream.lsp")
(load "
streams/
broadcast-stream-streams.lsp")
(load "
streams/
make-two-way-stream.lsp")
(load "
streams/
two-way-stream-input-stream.lsp")
(load "
streams/
two-way-stream-output-stream.lsp")
(load "
streams/
echo-stream-input-stream.lsp")
(load "
streams/
echo-stream-output-stream.lsp")
(load "
streams/
make-echo-stream.lsp")
(load "
streams/
concatenated-stream-streams.lsp")
(load "
streams/
make-concatenated-stream.lsp")
(load "
streams/
get-output-stream-string.lsp")
(load "
streams/
make-string-input-stream.lsp")
(load "
streams/
make-string-output-stream.lsp")
(load "
streams/
with-input-from-string.lsp")
(load "
streams/
with-output-to-string.lsp")
(load "
streams/
stream-error-stream.lsp")
broadcast-stream-streams.lsp
→
streams/
broadcast-stream-streams.lsp
View file @
c3539cc0
File moved
clear-input.lsp
→
streams/
clear-input.lsp
View file @
c3539cc0
File moved
clear-output.lsp
→
streams/
clear-output.lsp
View file @
c3539cc0
File moved
concatenated-stream-streams.lsp
→
streams/
concatenated-stream-streams.lsp
View file @
c3539cc0
File moved
echo-stream-input-stream.lsp
→
streams/
echo-stream-input-stream.lsp
View file @
c3539cc0
File moved
echo-stream-output-stream.lsp
→
streams/
echo-stream-output-stream.lsp
View file @
c3539cc0
File moved
file-length.lsp
→
streams/
file-length.lsp
View file @
c3539cc0
File moved
file-position.lsp
→
streams/
file-position.lsp
View file @
c3539cc0
File moved
file-string-length.lsp
→
streams/
file-string-length.lsp
View file @
c3539cc0
File moved
finish-output.lsp
→
streams/
finish-output.lsp
View file @
c3539cc0
File moved
force-output.lsp
→
streams/
force-output.lsp
View file @
c3539cc0
File moved
fresh-line.lsp
→
streams/
fresh-line.lsp
View file @
c3539cc0
File moved
get-output-stream-string.lsp
→
streams/
get-output-stream-string.lsp
View file @
c3539cc0
File moved
input-stream-p.lsp
→
streams/
input-stream-p.lsp
View file @
c3539cc0
File moved
interactive-stream-p.lsp
→
streams/
interactive-stream-p.lsp
View file @
c3539cc0
File moved
listen.lsp
→
streams/
listen.lsp
View file @
c3539cc0
File moved
make-broadcast-stream.lsp
→
streams/
make-broadcast-stream.lsp
View file @
c3539cc0
File moved
make-concatenated-stream.lsp
→
streams/
make-concatenated-stream.lsp
View file @
c3539cc0
File moved
make-echo-stream.lsp
→
streams/
make-echo-stream.lsp
View file @
c3539cc0
File moved
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment