'ww test' gains the istest build path (-T injection in build_one/ buildone) and do_test/dotest accept -I, mirroring do_run - both twins. The 35 converted lib tests drop their interim bare mains (-T synthesizes the entry from @test fns and rejects a user main); their 35 C run-drivers flip 'ww run' -> 'ww test'; 989_lib_byteid compiles lib tests under -T (8 user-main probe fixtures stay non-T, gated on the fixture field). Abort-on-first-failure stands until the deferred record-and-continue harness lands with the multi-package arc.
58 lines
1.6 KiB
C
58 lines
1.6 KiB
C
/*
|
|
* 905_nkname_run — execute the lib/ww nkname @test fixture under the
|
|
* C-side `ww run` driver and assert exit 0.
|
|
*
|
|
* Same thin-wrapper shape as 904_tok_run / 904_ascii_run: asttest.ww
|
|
* carries its own `export fn main()` that drives the @test fn and
|
|
* signals which case failed via the exit code. This pins nkname's
|
|
* if-ladder -> switch fold (every nkind + the unknown-kind fallback),
|
|
* which the 990_selfhost wwdump diff only covers for kinds that appear
|
|
* in its corpus.
|
|
*
|
|
* Unlike 904_tok_run, the fixture imports `ast` (package ww), whose
|
|
* printer references tok's tkind/tokname, so the run needs
|
|
* `-I lib/ww/lex` to resolve that transitive import.
|
|
*/
|
|
#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/ww/asttest.ww";
|
|
char path[1024], inc[1024], cmd[3072];
|
|
snprintf(path, sizeof path, "%s/%s", cwd, src);
|
|
snprintf(inc, sizeof inc, "%s/lib/ww/lex", cwd);
|
|
snprintf(cmd, sizeof cmd, "%s/ww test -I %s %s", bin, inc, path);
|
|
int rc = runwait(cmd);
|
|
if (rc != 0) {
|
|
fprintf(stderr, "nkname_run FAIL: %s exited %d\n", src, rc);
|
|
return 1;
|
|
}
|
|
printf("nkname_run: %s ok\n", src);
|
|
return 0;
|
|
}
|