/* * 989_sha256_run — execute the lib/crypto/sha256 @test fixture under the * C-side `ww run` driver and assert exit 0. * * Sibling to 989_siphash_run / 985_adler32_run (the hash/crypto cluster; * 9xx is full so this shares the 989 prefix — the `short` name keys the * binary, cf the 949_* multi-file precedent). sha256_test.ww carries its * own `export fn main()` that drives the NIST-vector @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 #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/crypto/sha256/sha256_test.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, "sha256_run FAIL: %s exited %d\n", src, rc); return 1; } printf("sha256_run: %s ok\n", src); return 0; }