Skip to content

Commit 23ba310

Browse files
authored
yes, coreutils: backport(enable) some GnuTests
1 parent e0f0318 commit 23ba310

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

util/fetch-gnu.sh

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ ver="9.10"
33
repo=https://github.com/coreutils/coreutils
44
curl -L "${repo}/releases/download/v${ver}/coreutils-${ver}.tar.xz" | tar --strip-components=1 -xJf -
55

6-
# TODO stop backporting tests from master at GNU coreutils > $ver
7-
# backport = ()
8-
# for f in ${backport[@]}
9-
# do curl -L ${repo}/raw/refs/heads/master/tests/$f > tests/$f
10-
# done
6+
backport=(
7+
misc/coreutils.sh # enable test
8+
misc/yes.sh # zero-copy
9+
)
10+
for f in "${backport[@]}"
11+
do curl -L ${repo}/raw/refs/heads/master/tests/$f > tests/$f
12+
done

0 commit comments

Comments
 (0)