From 2df9a155c6d0fd8f81ae765bfe2f48ce487e7ca8 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Mon, 23 Feb 2026 11:54:37 -0800 Subject: [PATCH] build radbin for torture --- .github/workflows/builds.yml | 7 ++++--- src/torture/torture.c | 3 +-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 195f02ce..e459000a 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -31,7 +31,7 @@ jobs: shell: cmd run: | call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 - call build "${{ matrix.target }}" "${{ matrix.compiler }}" "${{ matrix.mode }}" || exit /b 1 + call build meta "${{ matrix.target }}" "${{ matrix.compiler }}" "${{ matrix.mode }}" || exit /b 1 run-torture: runs-on: windows-2022 @@ -46,7 +46,8 @@ jobs: shell: cmd run: | call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64 - call build radlink san debug no_meta || exit /b 1 - call build torture debug no_meta || exit /b 1 + call build radbin san debug || exit /b 1 + call build radlink san debug || exit /b 1 + call build torture debug || exit /b 1 cd build torture -l:radlink || exit /b 1 diff --git a/src/torture/torture.c b/src/torture/torture.c index 6aed36e3..b4744af6 100644 --- a/src/torture/torture.c +++ b/src/torture/torture.c @@ -87,8 +87,7 @@ t_run(T_Run run) { T_RunCtx ctx = {0}; ctx.run = run; - //os_safe_call(t_run_caller, t_run_fail_handler, &ctx); - t_run_caller(&ctx); + os_safe_call(t_run_caller, t_run_fail_handler, &ctx); return ctx.result; }