2007-12-31 14:47:24 -05:00
|
|
|
USING: io io.mmap io.files kernel tools.test continuations sequences ;
|
2007-09-20 18:09:08 -04:00
|
|
|
IN: temporary
|
|
|
|
|
2008-02-06 14:47:19 -05:00
|
|
|
[ "mmap-test-file.txt" resource-path delete-file ] ignore-errors
|
2008-02-15 23:20:31 -05:00
|
|
|
[ ] [ "mmap-test-file.txt" resource-path [ "12345" write ] with-file-writer ] unit-test
|
2007-09-20 18:09:08 -04:00
|
|
|
[ ] [ "mmap-test-file.txt" resource-path dup file-length [ CHAR: 2 0 pick set-nth drop ] with-mapped-file ] unit-test
|
|
|
|
[ 5 ] [ "mmap-test-file.txt" resource-path dup file-length [ length ] with-mapped-file ] unit-test
|
2007-12-31 14:47:24 -05:00
|
|
|
[ "22345" ] [ "mmap-test-file.txt" resource-path file-contents ] unit-test
|
2008-02-06 14:47:19 -05:00
|
|
|
[ "mmap-test-file.txt" resource-path delete-file ] ignore-errors
|