factor/basis/io/mmap/mmap-tests.factor

11 lines
618 B
Factor
Raw Normal View History

USING: io io.mmap io.files kernel tools.test continuations
2008-04-11 15:38:25 -04:00
sequences io.encodings.ascii accessors ;
2008-03-01 17:00:45 -05:00
IN: io.mmap.tests
2007-09-20 18:09:08 -04:00
[ "mmap-test-file.txt" temp-file delete-file ] ignore-errors
[ ] [ "12345" "mmap-test-file.txt" temp-file ascii set-file-contents ] unit-test
[ ] [ "mmap-test-file.txt" temp-file dup file-info size>> [ CHAR: 2 0 pick set-nth drop ] with-mapped-file ] unit-test
[ 5 ] [ "mmap-test-file.txt" temp-file dup file-info size>> [ length ] with-mapped-file ] unit-test
[ "22345" ] [ "mmap-test-file.txt" temp-file ascii file-contents ] unit-test
[ "mmap-test-file.txt" temp-file delete-file ] ignore-errors