From 9f02f88091eed1a067dcc2263ba86fd6418fc118 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 9 Jan 2026 15:05:00 -0700 Subject: [PATCH] os-test-bins: fix test skipping --- recipes/tests/os-test-bins/recipe.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/recipes/tests/os-test-bins/recipe.toml b/recipes/tests/os-test-bins/recipe.toml index 4c42050ae..e2816674c 100644 --- a/recipes/tests/os-test-bins/recipe.toml +++ b/recipes/tests/os-test-bins/recipe.toml @@ -20,17 +20,17 @@ make OS=Redox CC="${CC_WRAPPER} ${GNU_TARGET}-gcc" \ skips=( # These tests hang - ppoll-block-sleep-raise-write - ppoll-block-sleep-write-raise + signal/ppoll-block-sleep-raise-write + signal/ppoll-block-sleep-write-raise ) for skip in "${skips[@]}" do - mkdir -p out.known/${os}/"$(dirname "${skip}")" - echo "skipped" > out.known/${os}/"${skip}.out" + mkdir -p out.known/redox/"$(dirname "${skip}")" + echo "skipped" > out.known/redox/"${skip}.out" done -cp -t out -R out.known/${os} +cp -t out -R out.known/redox # Create runner script mkdir -p "${COOKBOOK_STAGE}/usr/bin"