Commit e15cb585aec25c3ae7fe74ec07d55b97b5033618

Thomas de Grivel 2017-06-17T18:33:33

tests

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/test.lisp b/test.lisp
new file mode 100644
index 0000000..02c3ef2
--- /dev/null
+++ b/test.lisp
@@ -0,0 +1,14 @@
+
+(in-package :common-lisp-user)
+
+(defpackage :fd-stream.test
+  (:use :common-lisp
+	:cl-stream
+	:fd-stream)
+  #.(cl-stream:shadowing-import-from))
+
+(in-package :fd-stream.test)
+
+(with-stream (s (open-file "/tmp/test"))
+  (dotimes (i 100)
+    (write s i)))