summaryrefslogtreecommitdiffstats
path: root/regress/sys/kern/realpath (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Test more variants to specify the root directory.bluhm2019-08-061-1/+5
|
* Test realpath and unveil if the root directory is written as "//".bluhm2019-08-051-1/+2
|
* Fix realpath(3) errno code for an empty input path string.stsp2019-07-231-1/+2
| | | | | It should return ENOENT in this case, but was returning EINVAL. ok bluhm@ deraadt@
* Call stat(2) only once in realpath(3) userland reference implementation.bluhm2019-07-161-11/+10
|
* Our kernel __realpath(2) implementation does not allow non-existingbluhm2019-07-152-13/+19
| | | | | | files anymore. This is conforming to POSIX. Adjust the regression test to the new behavior. OK beck@
* Regress realpath(3) fails since the non directory hack has beenbluhm2019-07-092-3/+19
| | | | | | removed from libc. Make the regress implementation more POSIX compliant like it has been done for the kernel. OK beck@ deraadt@
* Fix white spaces.bluhm2019-07-091-12/+12
|
* Add some more relative path testsbeck2019-05-291-1/+11
|
* Document our currently incosnsistent behaviour and our currentbeck2019-05-131-2/+20
| | | | sins which have been judged by Dr Posix as sinful...
* let's check /bin/c++beck2019-05-111-1/+2
|
* Add another case for robert@ :)beck2019-05-081-1/+3
|
* a bit more evilbeck2019-04-261-3/+3
|
* /usr/include/machine is a good one.beck2019-04-261-1/+2
|
* Start a realpath(2) regress test, currently not enabled.beck2019-04-193-0/+405
This will extend as I add more cases to it. It will come into use once an in-kernel version of realpath(2) becomes a real thing