mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
efef4366f1
Warnings are good. If we turn on warnings with 'use warnings', we will see bugs that have lain latent for years. Signed-off-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
23 lines
551 B
Perl
Executable File
23 lines
551 B
Perl
Executable File
#!/usr/bin/perl
|
|
# (C) 2007 Jelmer Vernooij <jelmer@samba.org>
|
|
# Published under the GNU General Public License
|
|
use strict;
|
|
use warnings;
|
|
|
|
use Test::More tests => 6;
|
|
use FindBin qw($RealBin);
|
|
use lib "$RealBin";
|
|
use Util qw(test_warnings test_errors);
|
|
use Parse::Pidl qw(warning error);
|
|
|
|
test_warnings("", sub {});
|
|
|
|
test_warnings("x:1: msg\n", sub { warning({FILE => "x", LINE => 1}, "msg"); });
|
|
test_warnings("", sub {});
|
|
|
|
test_errors("", sub {});
|
|
|
|
test_errors("x:1: msg\n", sub { error({FILE => "x", LINE => 1}, "msg"); });
|
|
test_errors("", sub {});
|
|
|