Files
ww/test/wcc/980_memio_run.c
Hojun-Cho 2cd88f1707 test: wire lib/memio/memiotest.ww into make test
memiotest.ww existed and passed under `out/bin/ww run` but no
test/wcc/*.c ran it under `make test`. New 980_memio_run runs it
and propagates exit; matches the 998_bufio_run pattern.

980-989 is the new sub-band for stdlib-run integration tests.
2026-05-15 00:26:10 +09:00

52 lines
1.3 KiB
C

/*
* 980_memio_run — execute the lib/memio @test fixture under the
* C-side `ww run` driver and assert exit 0.
*
* Companion to 998_bufio_run; first entry in the 980-989 stdlib-run
* sub-band. memiotest.ww carries its own `export fn main()` that
* drives the @test fns and signals which case failed via the exit
* code, so this file is just a thin wrapper — no @test scanning,
* no synthetic main generation.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
static int
runwait(const char *cmd)
{
int rc = system(cmd);
if (rc == -1) return -1;
if (WIFEXITED(rc)) return WEXITSTATUS(rc);
return 1;
}
int
main(void)
{
const char *bin = getenv("BIN");
if (!bin) bin = "out/bin";
char absbin[1024];
if (bin[0] != '/') {
char cwd[1024];
if (getcwd(cwd, sizeof cwd) == NULL) return 1;
snprintf(absbin, sizeof absbin, "%s/%s", cwd, bin);
bin = absbin;
}
char cwd[1024];
if (getcwd(cwd, sizeof cwd) == NULL) return 1;
const char *src = "lib/memio/memiotest.ww";
char path[1024], cmd[2048];
snprintf(path, sizeof path, "%s/%s", cwd, src);
snprintf(cmd, sizeof cmd, "%s/ww run %s", bin, path);
int rc = runwait(cmd);
if (rc != 0) {
fprintf(stderr, "memio_run FAIL: %s exited %d\n", src, rc);
return 1;
}
printf("memio_run: %s ok\n", src);
return 0;
}