zig/test/standalone/posix
Andrew Kelley b1d1806fef std.process: currentDir -> currentPath
In Zig standard library, Dir means an open directory handle. path
represents a file system identifier string. This function is better
named after "current path" than "current dir". "get" and "working" are
superfluous.
2026-01-29 18:47:58 -08:00
..
build.zig standalone tests: Delete all ad hoc TmpDir instances, use the build system instead 2026-01-05 20:41:18 +01:00
cwd.zig std.process: currentDir -> currentPath 2026-01-29 18:47:58 -08:00
getenv.zig fix native path lookup on macOS 2026-01-04 00:27:08 -08:00
README.md standalone posix tests: add skeleton 2025-09-09 22:07:44 -07:00
relpaths.zig standalone tests: Delete all ad hoc TmpDir instances, use the build system instead 2026-01-05 20:41:18 +01:00
sigaction.zig std: make signal numbers into an enum 2025-10-29 06:20:51 -07:00

Zig standalone POSIX tests

This directory is just for std.posix-related test cases that depend on process-wide state like the current-working directory, signal handlers, fork, the main thread, environment variables, etc. Most tests (e.g, around file descriptors, etc) are with the unit tests in lib/std/posix/test.zig. New tests should be with the unit tests, unless there is a specific reason they cannot.