From a0821016731b5ab8c4241f7a1bd99f918986ee50 Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Sat, 20 Dec 2025 23:27:26 +0900 Subject: [PATCH 1/2] Avoid incorrect PASS of 2 tests --- util/fetch-gnu.sh | 10 ++++++---- util/why-error.md | 2 ++ 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/util/fetch-gnu.sh b/util/fetch-gnu.sh index 927d85949e8..7ba3620e489 100755 --- a/util/fetch-gnu.sh +++ b/util/fetch-gnu.sh @@ -3,7 +3,9 @@ ver="9.9" repo=https://github.com/coreutils/coreutils curl -L "${repo}/releases/download/v${ver}/coreutils-${ver}.tar.xz" | tar --strip-components=1 -xJf - -# backport from coreutils > 9.9 -curl ${repo}/raw/refs/heads/master/tests/mv/hardlink-case.sh > tests/mv/hardlink-case.sh -curl ${repo}/raw/refs/heads/master/tests/mkdir/writable-under-readonly.sh > tests/mkdir/writable-under-readonly.sh -curl ${repo}/raw/refs/heads/master/tests/cp/cp-mv-enotsup-xattr.sh > tests/cp/cp-mv-enotsup-xattr.sh #spell-checker:disable-line +# TODO stop backporting tests from master at GNU coreutils > 9.9 +curl -L ${repo}/raw/refs/heads/master/tests/mv/hardlink-case.sh > tests/mv/hardlink-case.sh +curl -L ${repo}/raw/refs/heads/master/tests/mkdir/writable-under-readonly.sh > tests/mkdir/writable-under-readonly.sh +curl -L ${repo}/raw/refs/heads/master/tests/cp/cp-mv-enotsup-xattr.sh > tests/cp/cp-mv-enotsup-xattr.sh #spell-checker:disable-line +# Avoid incorrectly passing runcon-compute +curl -L ${repo}/raw/refs/heads/master/tests/runcon/runcon-compute.sh > tests/runcon/runcon-compute.sh diff --git a/util/why-error.md b/util/why-error.md index 04039e34e2a..a445d0296e6 100644 --- a/util/why-error.md +++ b/util/why-error.md @@ -1,5 +1,6 @@ This file documents why some GNU tests are failing: * cp/cp-a-selinux.sh +* cp/cp-mv-enotsup-xattr * cp/preserve-gid.sh * date/date-debug.sh * date/date.pl @@ -34,5 +35,6 @@ This file documents why some GNU tests are failing: * tail/follow-stdin.sh * tail/inotify-rotate-resources.sh * tail/symlink.sh +* runcon/runcon-compute.sh * stty/stty-row-col.sh * stty/stty.sh From bd360b834960cc527bed69961652df30b79cf991 Mon Sep 17 00:00:00 2001 From: oech3 <> Date: Mon, 22 Dec 2025 19:52:05 +0900 Subject: [PATCH 2/2] why-error: Drop shred-passes --- util/why-error.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/util/why-error.md b/util/why-error.md index a445d0296e6..b015b222683 100644 --- a/util/why-error.md +++ b/util/why-error.md @@ -1,6 +1,6 @@ This file documents why some GNU tests are failing: * cp/cp-a-selinux.sh -* cp/cp-mv-enotsup-xattr +* cp/cp-mv-enotsup-xattr * cp/preserve-gid.sh * date/date-debug.sh * date/date.pl @@ -22,7 +22,6 @@ This file documents why some GNU tests are failing: * ptx/ptx.pl * rm/one-file-system.sh - https://github.com/uutils/coreutils/issues/7011 * rm/rm1.sh - https://github.com/uutils/coreutils/issues/9479 -* shred/shred-passes.sh - https://github.com/uutils/coreutils/pull/9317 * sort/sort-debug-keys.sh * sort/sort-debug-warn.sh * sort/sort-float.sh