1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-08 17:42:12 +03:00

support: Add envp argument to support_capture_subprogram

So tests can specify a list of environment variables.
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
This commit is contained in:
Adhemerval Zanella
2024-05-06 13:18:47 -03:00
parent c8a0e21da6
commit 1e1ad714ee
16 changed files with 30 additions and 26 deletions

View File

@@ -33,10 +33,11 @@ struct support_subprocess
struct support_subprocess support_subprocess
(void (*callback) (void *), void *closure);
/* Issue FILE with ARGV arguments by using posix_spawn and return is PID, a
pipe redirected to STDOUT, and a pipe redirected to STDERR. */
/* Issue FILE with ARGV arguments and ENVP environments by using posix_spawn
and return is PID, a pipe redirected to STDOUT, and a pipe redirected to
STDERR. If ENVP is NULL the current environment variable is used. */
struct support_subprocess support_subprogram
(const char *file, char *const argv[]);
(const char *file, char *const argv[], char *const envp[]);
/* Invoke program FILE with ARGV arguments by using posix_spawn and wait for it
to complete. Return program exit status. */