diff options
author | Stefan Fritsch <sf@cvs.openbsd.org> | 2017-05-29 11:01:17 +0000 |
---|---|---|
committer | Stefan Fritsch <sf@cvs.openbsd.org> | 2017-05-29 11:01:17 +0000 |
commit | b616f7288dff202c42f8679a1004a51a05e08bbf (patch) | |
tree | 0237e5264adfe6d3e35d5469027b929e698f381d /regress/sys/fileops/ffs | |
parent | faa02010297e21adc86750cd058ecdd82ea18356 (diff) |
Regress test for sparse files & mmap with different FSs
This test creates a file with a hole in the middle and then checks that
when reading or mmaping the whole file, the data is correct.
This catches the bug introduced by the
"Implement VFS read clustering for MSDOSFS" commit that hat to be
reverted.
For now, we run the test with FAT16, FAT32, FFS
With much advice from bluhm@
Diffstat (limited to 'regress/sys/fileops/ffs')
-rw-r--r-- | regress/sys/fileops/ffs/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/regress/sys/fileops/ffs/Makefile b/regress/sys/fileops/ffs/Makefile new file mode 100644 index 00000000000..abcbb411389 --- /dev/null +++ b/regress/sys/fileops/ffs/Makefile @@ -0,0 +1,6 @@ +# $OpenBSD: Makefile,v 1.1 2017/05/29 11:01:16 sf Exp $ + +NEWFS = newfs +MOUNT = mount + +.include <bsd.regress.mk> |