summaryrefslogtreecommitdiff
path: root/tests/lib/libc/gen/posix_spawn
AgeCommit message (Collapse)Author
2022-05-31s/disbale/disable/ and s/enbale/enable/ in comments. also one more typo fix.andvar
2022-05-23s/controll/control/ in comments.andvar
2021-11-22undef a couple more.christos
2021-11-20Merge common code for the chdir cases (Piyush Sachdeva)christos
I also deduplicated some more code
2021-11-15Add missing testchristos
2021-11-07Fix linking for multi-source file tests, the second part of the tuplemartin
needs to be the C source file (not the base name)
2021-11-07new tests for posix_spawn_chdir from Piyush Sachdevachristos
2021-09-03s/existant/existent/ in comments and messages, plus few more similar fixes.andvar
2021-08-21fix mainly same typos as in my previous commit but outside sys/dev/dm.andvar
2021-05-02Add test for POSIX_SPAWN_RESETIDS flagmartin
2017-12-21Fix broken test: we can't assume that the current schedule priority rangechristos
will overlap with the requested scheduler range, so get the new scheduler range, and then try to find a different priority. If that fails (to find a different scheduling range), give up here.
2017-12-18Don't use SCHED_OTHER.christos
2017-01-10more tests needing <sys/stat.h>christos
2014-10-18src is too big these days to tolerate superfluous apostrophes. It'ssnj
"its", people!
2012-04-09Fix asynchronous posix_spawn child exit status (and test for it).martin
2012-04-08Rework posix_spawn locking and memory management:martin
- always provide a vmspace for the new proc, initially borrowing from proc0 (this part fixes PR 46286) - increase parallelism between parent and child if arguments allow this, avoiding a potential deadlock on exec_lock - add a new flag for userland to request old (lockstepped) behaviour for better error reporting - adapt test cases to the previous two and add a new variant to test the diagnostics flag - fix a few memory (and lock) leaks - provide netbsd32 compat
2012-02-20Add a test case to call posix_spawn with empty file actions, which reproducedmartin
the (now fixed) PR kern/46038.
2012-02-14Add a few more posix_spawn testcases, which should detect everything thatmartin
was wrong in the initial version, causing the failure reported in PR kern/45991.
2012-02-13Move posix_spawn tests to lib/libc/gen/posix_spawn - they test both libcmartin
and kernel, but that is an implementation detail unrelated to the tests themselfs. Ok: releng