Skip to content

Commit

Permalink
Make sure s3_utilities are found.
Browse files Browse the repository at this point in the history
Add FindBin code to rgw/s3 tests to include s3_utilites.pm properly.

Fixes: 7863
Signed-off-by: Warren Usui <[email protected]>
  • Loading branch information
Warren Usui committed Mar 25, 2014
1 parent b9e29ca commit 2779e2a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions qa/workunits/rgw/s3_bucket_quota.pl
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ =head1 ARGUMENTS
use Getopt::Long;
use Digest::MD5;
use Pod::Usage();
use FindBin;
use lib $FindBin::Bin;
use s3_utilities;

my $help;
Expand Down
2 changes: 2 additions & 0 deletions qa/workunits/rgw/s3_multipart_upload.pl
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ =head1 ARGUMENTS
use Getopt::Long;
use Digest::MD5;
use Pod::Usage();
use FindBin;
use lib $FindBin::Bin;
use s3_utilities;

my $help;
Expand Down
2 changes: 2 additions & 0 deletions qa/workunits/rgw/s3_user_quota.pl
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ =head1 ARGUMENTS
use Getopt::Long;
use Digest::MD5;
use Pod::Usage();
use FindBin;
use lib $FindBin::Bin;
use s3_utilities;

my $help;
Expand Down

0 comments on commit 2779e2a

Please sign in to comment.