mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-25 15:37:56 +00:00
parallel: Fixed regression bug.
This commit is contained in:
parent
c34e6c489c
commit
7d75bde672
|
@ -541,7 +541,7 @@ sub get_options_from_array {
|
|||
sub parse_options {
|
||||
# Returns: N/A
|
||||
# Defaults:
|
||||
$Global::version = 20120107;
|
||||
$Global::version = 20120111;
|
||||
$Global::progname = 'parallel';
|
||||
$Global::infinity = 2**31;
|
||||
$Global::debug = 0;
|
||||
|
@ -4684,8 +4684,11 @@ sub nest_get {
|
|||
# forget the value after first use.
|
||||
if($no_of_inputsources == 1) {
|
||||
my $arg = read_arg_from_fh($self->{'fhs'}[0]);
|
||||
if(defined($arg)) {
|
||||
return [$arg];
|
||||
}
|
||||
return undef;
|
||||
}
|
||||
for (my $fhno = $no_of_inputsources - 1; $fhno >= 0; $fhno--) {
|
||||
if(eof($self->{'fhs'}[$fhno])) {
|
||||
next;
|
||||
|
|
|
@ -33,7 +33,7 @@ echo '### Bug in --load';
|
|||
parallel -k --load 30 sleep 0.1\;echo ::: 1 2 3
|
||||
|
||||
echo '### Test --timeout';
|
||||
parallel -j0 -k --timeout 1 echo {}\; sleep {}\; echo {} ::: 1.1 3.3 4.4 5.5
|
||||
parallel -j0 -k --timeout 1 echo {}\; sleep {}\; echo {} ::: 1.1 6.6 7.7 8.8
|
||||
|
||||
echo '### Test retired';
|
||||
stdout parallel -B;
|
||||
|
|
|
@ -16,10 +16,9 @@ OK
|
|||
### Test --timeout
|
||||
1.1
|
||||
1.1
|
||||
3.3
|
||||
3.3
|
||||
4.4
|
||||
5.5
|
||||
6.6
|
||||
7.7
|
||||
### Test retired
|
||||
parallel: -g has been retired. Use --group.
|
||||
parallel: -B has been retired. Use --bf.
|
||||
|
|
Loading…
Reference in a new issue