parallel: Fixed regression bug.

This commit is contained in:
Ole Tange 2012-01-11 23:07:31 +01:00
parent c34e6c489c
commit 7d75bde672
3 changed files with 8 additions and 6 deletions

View file

@ -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,7 +4684,10 @@ sub nest_get {
# forget the value after first use.
if($no_of_inputsources == 1) {
my $arg = read_arg_from_fh($self->{'fhs'}[0]);
return [$arg];
if(defined($arg)) {
return [$arg];
}
return undef;
}
for (my $fhno = $no_of_inputsources - 1; $fhno >= 0; $fhno--) {
if(eof($self->{'fhs'}[$fhno])) {

View file

@ -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;

View file

@ -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.