Skip to content

Commit 078ab97

Browse files
committed
factor, coreutils: backport 2 GNU tests
1 parent e9ad8b8 commit 078ab97

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
9+
factor/factor.pl
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)