1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

selftest: enable perl warnings

After this we will see more noise with each test run, and these
warnings will be addressed in following commits.

Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Douglas Bagnall 2019-12-07 22:37:00 +13:00 committed by Andrew Bartlett
parent cf4984947b
commit 8f17d48163
6 changed files with 6 additions and 0 deletions

View File

@ -24,6 +24,7 @@ use Exporter;
@EXPORT_OK = qw(setup_dir setup_pcap set_default_iface);
use strict;
use warnings;
use FindBin qw($RealBin);
sub setup_dir($$)

View File

@ -22,6 +22,7 @@ require Exporter;
@ISA = qw(Exporter);
use strict;
use warnings;
sub start_test($)
{

View File

@ -17,6 +17,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
use strict;
use warnings;
use FindBin qw($RealBin $Script);
use File::Spec;

View File

@ -6,6 +6,7 @@
package Samba;
use strict;
use warnings;
use target::Samba3;
use target::Samba4;
use POSIX;

View File

@ -9,6 +9,7 @@
package Samba3;
use strict;
use warnings;
use Cwd qw(abs_path);
use FindBin qw($RealBin);
use POSIX;

View File

@ -9,6 +9,7 @@
package Samba4;
use strict;
use warnings;
use Cwd qw(abs_path);
use FindBin qw($RealBin);
use POSIX;