TODO the failing T_BOOL tests
authorTony Cook <tony@develop-help.com>
Wed, 19 Dec 2012 22:05:47 +0000 (09:05 +1100)
committerTony Cook <tony@develop-help.com>
Wed, 19 Dec 2012 22:31:31 +0000 (09:31 +1100)
also update one test so it actually fails

ext/XS-Typemap/t/Typemap.t

index 5cad128..91daa20 100644 (file)
@@ -160,11 +160,13 @@ ok( ! T_BOOL(undef) );
 }
 
 {
+    local $TODO = "Output parameters for T_BOOL don't work";
     my ($in, $out);
     $in = 1;
     T_BOOL_OUT($out, $in);
     ok($out, "T_BOOL_OUT, true in");
     $in = 0;
+    $out = 1;
     T_BOOL_OUT($out, $in);
     ok(!$out, "T_BOOL_OUT, false in");
 }