summaryrefslogtreecommitdiff
path: root/tests/general/io.icn
diff options
context:
space:
mode:
Diffstat (limited to 'tests/general/io.icn')
-rw-r--r--tests/general/io.icn15
1 files changed, 4 insertions, 11 deletions
diff --git a/tests/general/io.icn b/tests/general/io.icn
index fec8522..826ef83 100644
--- a/tests/general/io.icn
+++ b/tests/general/io.icn
@@ -3,11 +3,10 @@
# I/O test -- writes ./tmp1 and ./tmp2 as well as stdout
procedure main()
- local L, f, m, n, t1, t2
+ local L, f, n, t1, t2
L := [&input, &output, &errout,
- m := open("/etc/motd") | stop("no /etc/motd"),
- n := open("/dev/null", "w") | stop("no /dev/null")]
+ n := open("/dev/null", "w") | stop("no /dev/null")]
L := sort(L)
every f := !L do
write(type(f), ": ", image(f))
@@ -21,12 +20,6 @@ procedure main()
every write(!&input) \ 2
write()
- write("flush /etc/motd: ", image(flush(m)) | "FAILED")
- write("close /etc/motd: ", image(close(m)) | "FAILED")
- write("close /etc/motd: ", image(close(m)) | "FAILED")
- write("flush /etc/motd: ", image(flush(m)) | "FAILED")
-
- write()
write("flush /dev/null: ", image(flush(n)) | "FAILED")
write("close /dev/null: ", image(close(n)) | "FAILED")
write("close /dev/null: ", image(close(n)) | "FAILED")
@@ -103,8 +96,8 @@ procedure wfile(name, mode, s)
writes(s)
tab(many(' '))
while not pos(0) do {
- write(f, tab(upto(' ') | 0))
- tab(many(' '))
+ write(f, tab(upto(' ') | 0))
+ tab(many(' '))
}
write(" : ", where(f))
flush(f)