summaryrefslogtreecommitdiff
path: root/Userland/test_io.cpp
AgeCommit message (Expand)Author
2020-04-19Kernel: rmdir("/") should fail instead of assertingAndreas Kling
2020-04-19test_io: Unbreak symlink test after sys$readlink() '\0' changesAndreas Kling
2020-01-27Kernel: sys$readlink() should return the number of bytes written outAndreas Kling
2020-01-26Kernel: Make writev() work againAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-15Kernel: Trying to sys$link() a directory should fail with EPERMAndreas Kling
2020-01-15Ext2FS: Don't allow creating new files in removed directoriesAndreas Kling
2020-01-12Kernel: read() and write() should EOVERFLOW if (offset+size) overflowsAndreas Kling
2020-01-10Kernel: unlink() should not follow symlinksAndreas Kling
2020-01-08Kernel: open() and openat() should ignore non-permission bits in modeAndreas Kling
2020-01-08ProcFS: Reads past the end of a generated file should be zero-lengthAndreas Kling
2020-01-08TmpFS: Reads past the end of a file should be zero-lengthAndreas Kling
2020-01-08Kernel: mmap() should fail with ENODEV for directoriesAndreas Kling
2020-01-07Kernel: Validate ftruncate(fd, length) syscall inputsAndreas Kling
2020-01-03test_io: Test that seeking past EOF and then reading returns 0Andreas Kling
2020-01-03test_io: Verify that write() on an O_RDONLY fd fails with EBADFAndreas Kling
2020-01-03test_io: Verify that read() on an O_WRONLY fd fails with EBADFAndreas Kling
2020-01-03test_io: Add a simple test program that abuses some I/O syscallsAndreas Kling