From 7ca50236c42ad1b1aa19951815d03b62c0c722ed Mon Sep 17 00:00:00 2001 From: Dean Deng Date: Wed, 23 Oct 2019 22:21:33 -0700 Subject: Handle AT_EMPTY_PATH flag in execveat. PiperOrigin-RevId: 276419967 --- test/util/multiprocess_util.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'test/util') diff --git a/test/util/multiprocess_util.h b/test/util/multiprocess_util.h index c413d63ea..61526b4e7 100644 --- a/test/util/multiprocess_util.h +++ b/test/util/multiprocess_util.h @@ -109,6 +109,15 @@ PosixErrorOr ForkAndExecveat(int32_t dirfd, const std::string& pathname const std::function& fn, pid_t* child, int* execve_errno); +inline PosixErrorOr ForkAndExecveat(int32_t dirfd, + const std::string& pathname, + const ExecveArray& argv, + const ExecveArray& envv, int flags, + pid_t* child, int* execve_errno) { + return ForkAndExecveat( + dirfd, pathname, argv, envv, flags, [] {}, child, execve_errno); +} + // Calls fn in a forked subprocess and returns the exit status of the // subprocess. // -- cgit v1.2.3