Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Fix plugin-test
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz committed Aug 25, 2015
1 parent 6f99dca commit 4d95cab
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/plugin-test
Expand Up @@ -121,13 +121,13 @@ dstat=$?
perl -ne '
chomp();
if (/Creating RestoreObject/) {
@elt = split(/\s/, $_, 7);
$ro{$elt[5]}{clen} = $elt[4];
$ro{$elt[5]}{cdata} = $elt[6];
@elt = split(/\s/, $_, 8);
$ro{$elt[6]}{clen} = $elt[4];
$ro{$elt[6]}{cdata} = $elt[7];
} elsif (/Get RestoreObject/) {
@elt = split(/\s/, $_, 9);
$ro{$elt[6]}{glen} = $elt[4];
$ro{$elt[6]}{gdata} = $elt[8];
@elt = split(/\s/, $_, 10);
$ro{$elt[7]}{glen} = $elt[4];
$ro{$elt[7]}{gdata} = $elt[9];
}
END {
$err=0;
Expand Down

0 comments on commit 4d95cab

Please sign in to comment.