File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed
Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash -e
2- ver=" 9.10 "
2+ ver=" 9.11 "
33repo=https://github.com/coreutils/coreutils
44curl -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- misc/coreutils.sh # enable test
9- tee/tee.sh # input containing sleep
10- misc/yes.sh # zero-copy
7+ exit 0
8+ backport=(
119)
1210 for f in " ${backport[@]} "
1311 do curl -L ${repo} /raw/refs/heads/master/tests/$f > tests/$f
1412 done
15- # adjust for getlimits > $ver
16- sed -i.b " s/\$ ENOSPC/No space left on device/" tests/misc/yes.sh
Original file line number Diff line number Diff line change 11tests_factor_factor.pl.patch
22tests_cksum_base64.patch
33tests_comm.pl.patch
4- tests_cut_error_msg.patch
4+ # FIXME: tests_cut_error_msg.patch
55tests_dup_source.patch
66tests_env_env-S.pl.patch
77tests_invalid_opt.patch
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Index: gnu/tests/cut/cut.pl
1111- my $inval_fld = "$prog: invalid field range\n$try";
1212- my $inval_pos = "$prog: invalid byte or character range\n$try";
1313- my $no_endpoint = "$prog: invalid range with no endpoint: -\n$try";
14+ - my $one_list = "$prog: only one list may be specified\n$try";
1415- my $nofield = "$prog: an input delimiter may be specified only when " .
1516- "operating on fields\n$try";
1617+ my $from_field1 = "$prog: range '' was invalid: failed to parse range\n";
@@ -21,6 +22,7 @@ Index: gnu/tests/cut/cut.pl
2122+ my $inval_fld = "$prog: range '--' was invalid: failed to parse range\n";
2223+ my $inval_pos = "$prog: range '--' was invalid: failed to parse range\n";
2324+ my $no_endpoint = "$prog: range '-' was invalid: invalid range with no endpoint\n";
25+ + my $one_list = "$prog: only one list may be specified\n$try";
2426+ my $nofield = "$prog: invalid input: The '--delimiter' ('-d') option can only be used when printing a sequence of fields\n";
2527
2628 my @Tests =
You can’t perform that action at this time.
0 commit comments