Skip to content

Commit b4feef9

Browse files
committed
yes, coreutils: backport(enable) some GnuTests
1 parent e0f0318 commit b4feef9

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

util/fetch-gnu.sh

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

66
# 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
7+
backport=(
8+
misc/coreutils.sh # enable test
9+
misc/yes.sh # zero-copy
10+
)
11+
for f in "${backport[@]}"
12+
do curl -L ${repo}/raw/refs/heads/master/tests/$f > tests/$f
13+
done

0 commit comments

Comments
 (0)