autotest: don't die on failure to read state file
this can happen as part of a "regular" test failure.
This commit is contained in:
parent
5d7f2c7461
commit
929aa3281b
|
@ -559,7 +559,10 @@ sub ckstate($$)
|
|||
$hdr{'MaxPulledUid'} = $$t[0];
|
||||
$hdr{'MaxPushedUid'} = $$t[2];
|
||||
$hdr{'MaxExpiredFarUid'} = $$t[1] if ($$t[1] ne 0);
|
||||
open(FILE, "<", $fn) or die "Cannot read sync state $fn.\n";
|
||||
if (!open(FILE, "<", $fn)) {
|
||||
print STDERR "Cannot read sync state $fn.\n";
|
||||
return 1;
|
||||
}
|
||||
chomp(my @ls = <FILE>);
|
||||
close FILE;
|
||||
OUTER: while (1) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user