File: bug75976.t

package info (click to toggle)
libnetaddr-ip-perl 4.079%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 1,580 kB
  • ctags: 251
  • sloc: perl: 1,417; cpp: 67; sh: 51; makefile: 9
file content (41 lines) | stat: -rw-r--r-- 761 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41

BEGIN { $| = 1; print "1..7\n"; }
END {print "not ok 1\n" unless $loaded;}

$loaded = 1;
print "ok 1\n";

#use diagnostics;
use NetAddr::IP::Lite;

$| = 1;

my $test = 2;

sub ok() {
  print 'ok ',$test++,"\n";
}

my $ud = undef;
my @bugtest = (
	0	=> '0.0.0.0/32', '0:0:0:0:0:0:0:0/128',
	$ud	=> '0.0.0.0/0', '0:0:0:0:0:0:0:0/0',
	""	=> 'undef', 'undef',
);
  

for (my $i=0;$i <= $#bugtest;$i+=3) {
  my $ip6 = sprintf("%s", NetAddr::IP::Lite->new6($bugtest[$i]) || 'undef');
  my $ip = sprintf ("%s", NetAddr::IP::Lite->new($bugtest[$i]) || 'undef');
  my $expip = $bugtest[$i+1];
  my $expip6 = $bugtest[$i+2];

  print "got: $ip\nexp: $expip\nnot "
	unless $ip eq $expip;
  &ok;

  print "got: $ip6\nexp: $expip6\nnot "
	unless $ip6 eq $expip6;
  &ok;

}