75 lines
3.6 KiB
C
75 lines
3.6 KiB
C
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:2;tab-width:8;coding:utf-8 -*-│
|
|
│vi: set net ft=c ts=2 sts=2 sw=2 fenc=utf-8 :vi│
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
│ Copyright 2020 Justine Alexandra Roberts Tunney │
|
|
│ │
|
|
│ This program is free software; you can redistribute it and/or modify │
|
|
│ it under the terms of the GNU General Public License as published by │
|
|
│ the Free Software Foundation; version 2 of the License. │
|
|
│ │
|
|
│ This program is distributed in the hope that it will be useful, but │
|
|
│ WITHOUT ANY WARRANTY; without even the implied warranty of │
|
|
│ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU │
|
|
│ General Public License for more details. │
|
|
│ │
|
|
│ You should have received a copy of the GNU General Public License │
|
|
│ along with this program; if not, write to the Free Software │
|
|
│ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA │
|
|
│ 02110-1301 USA │
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
#include "libc/calls/calls.h"
|
|
#include "libc/calls/hefty/spawn.h"
|
|
#include "libc/dce.h"
|
|
#include "libc/errno.h"
|
|
#include "libc/runtime/runtime.h"
|
|
#include "libc/str/str.h"
|
|
#include "libc/sysv/consts/auxv.h"
|
|
#include "libc/sysv/consts/exit.h"
|
|
#include "libc/sysv/consts/fileno.h"
|
|
#include "libc/testlib/testlib.h"
|
|
|
|
#define CMD (IsWindows() ? "cmd" : "sh")
|
|
#define ARG (IsWindows() ? "/c" : "-c")
|
|
#define COD (IsWindows() ? "echo %BOOP%" : "echo $BOOP")
|
|
#define OUT (IsWindows() ? u"hello♪◙" : u"hello◙")
|
|
|
|
TEST(spawnve, testIpc) {
|
|
ssize_t got;
|
|
int pid, wstatus;
|
|
char buf[16] = {0};
|
|
int tubes[3] = {STDIN_FILENO, -1, STDERR_FILENO};
|
|
errno = 0;
|
|
setenv("BOOP", "hello", true);
|
|
ASSERT_EQ(0, errno);
|
|
ASSERT_NE(-1, (pid = spawnlp(0, tubes, CMD, CMD, ARG, COD, NULL)));
|
|
ASSERT_EQ(0, errno);
|
|
ASSERT_NE(-1, (got = read(tubes[1], buf, sizeof(buf))));
|
|
ASSERT_EQ(0, errno);
|
|
ASSERT_NE(-1, waitpid(pid, &wstatus, 0));
|
|
ASSERT_EQ(0, errno);
|
|
EXPECT_EQ(0, WEXITSTATUS(wstatus));
|
|
EXPECT_BINEQ(OUT, buf);
|
|
}
|
|
|
|
TEST(spawnve, testExit) {
|
|
int pid, wstatus;
|
|
ASSERT_NE(-1, (pid = spawnlp(0, NULL, CMD, CMD, ARG, "exit 42", NULL)));
|
|
ASSERT_NE(-1, waitpid(pid, &wstatus, 0));
|
|
EXPECT_EQ(42, WEXITSTATUS(wstatus));
|
|
}
|
|
|
|
TEST(spawnve, testSpawnSelf) {
|
|
int pid, wstatus;
|
|
ASSERT_NE(-1,
|
|
(pid = spawnlp(0, NULL, (const char *)getauxval(AT_EXECFN),
|
|
program_invocation_name, "--testSpawnSelf", NULL)));
|
|
ASSERT_NE(-1, waitpid(pid, &wstatus, 0));
|
|
EXPECT_EQ(123, WEXITSTATUS(wstatus));
|
|
}
|
|
static textstartup void onspawnself() {
|
|
if (g_argc > 1 && strcmp(g_argv[1], "--testSpawnSelf") == 0) {
|
|
_exit(123);
|
|
}
|
|
}
|
|
const void *const onspawnself_ctor[] initarray = {onspawnself};
|