Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions util/fetch-gnu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
3 changes: 2 additions & 1 deletion util/why-error.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
This file documents why some GNU tests are failing:
* cp/cp-a-selinux.sh
* cp/cp-mv-enotsup-xattr <!-- spell-checker:disable-line -->
* cp/preserve-gid.sh
* date/date-debug.sh
* date/date.pl
Expand All @@ -22,7 +23,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
Expand All @@ -35,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
Loading