XS::Typemap: Fix tests with -Dusemorebits
authorSteffen Mueller <smueller@cpan.org>
Fri, 3 Feb 2012 06:53:15 +0000 (07:53 +0100)
committerSteffen Mueller <smueller@cpan.org>
Fri, 3 Feb 2012 07:16:22 +0000 (08:16 +0100)
Thanks, Karl, for spotting this sillyness!

ext/XS-Typemap/t/Typemap.t

index 2baa1cb..2a3f25e 100644 (file)
@@ -6,7 +6,7 @@ BEGIN {
     }
 }
 
-use Test::More tests => 114;
+use Test::More tests => 140;
 
 use strict;
 use warnings;
@@ -283,9 +283,14 @@ for (0..$#opq) {
 note("T_PACKED");
 my $struct = T_PACKED_out(-4, 3, 2.1);
 ok(ref($struct) eq 'HASH');
-is_deeply($struct, {a => -4, b => 3, c => 2.1});
+is_approx($struct->{a}, -4);
+is_approx($struct->{b}, 3);
+is_approx($struct->{c}, 2.1);
 my @rv = T_PACKED_in($struct);
-is_deeply(\@rv, [-4, 3, 2.1]);
+is(scalar(@rv), 3);
+is_approx($rv[0], -4);
+is_approx($rv[1], 3);
+is_approx($rv[2], 2.1);
 
 # T_PACKEDARRAY
 SCOPE: {
@@ -299,12 +304,19 @@ SCOPE: {
   push @out, {a => $d[$_*3], b => $d[$_*3+1], c => $d[$_*3+2]} for (0..2);
   my $structs = T_PACKEDARRAY_out(@d);
   ok(ref($structs) eq 'ARRAY');
-  is_deeply(
-    $structs,
-    \@out
-  );
+  is(scalar(@$structs), 3);
+  foreach my $i (0..2) {
+    my $s = $structs->[$i];
+    is(ref($s), 'HASH');
+    is_approx($s->{a}, $d[$i*3+0]);
+    is_approx($s->{b}, $d[$i*3+1]);
+    is_approx($s->{c}, $d[$i*3+2]);
+  }
   my @rv = T_PACKEDARRAY_in($structs);
-  is_deeply(\@rv, \@d);
+  is(scalar(@rv), scalar(@d));
+  foreach my $i (0..$#d) {
+    is_approx($rv[$i], $d[$i]);
+  }
 }
 
 # Skip T_DATAUNIT
@@ -394,3 +406,14 @@ SCOPE: {
   is(readline($fh2), $str);
   ok(eval {print $fh2 "foo\n"; 1});
 }
+
+sub is_approx {
+  my ($l, $r, $n) = @_;
+  if (not defined $l or not defined $r) {
+    fail(defined($n) ? $n : ());
+  }
+  else {
+    ok($l < $r+1e-6 && $r < $l+1e-6, defined($n) ? $n : ())
+      or note("$l and $r seem to be different given a fuzz of 1e-6");
+  }
+}