/* * 909_stof_run — execute the lib/strconv/test/stoftest fixture under the * C-side `ww run` driver and assert exit 0. * * Same thin-wrapper shape as 922_decimal_run: stoftest.ww carries its own * `export fn main()` that drives the @test fns (stof64/stof32 DEC + hex * vectors, bit-exact) and signals which case failed via the exit code * (signalled + 10, so cases 1..4 → exit 11..14). * * The fixture lives in lib/strconv/test/ (not lib/strconv/) so * `import strconv` resolves to the lib/strconv DIRECTORY (full package: * strconv.ww + decimal.ww + stof_data.ww + stof.ww), not the strconv.ww * FILE — same rationale as 922_decimal_run. */ #include #include #include #include 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/strconv/test/stoftest.ww"; char path[1024], cmd[2048]; snprintf(path, sizeof path, "%s/%s", cwd, src); snprintf(cmd, sizeof cmd, "%s/ww test %s", bin, path); int rc = runwait(cmd); if (rc != 0) { fprintf(stderr, "stof_run FAIL: %s exited %d\n", src, rc); return 1; } printf("stof_run: %s ok\n", src); return 0; }