File: todo_test_workround_unpack_limit.diff

package info (click to toggle)
libdr-tarantool-perl 0.15-1%2Bdeb70u1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 308 kB
  • sloc: perl: 2,901; makefile: 21
file content (16 lines) | stat: -rw-r--r-- 813 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Index: libdr-tarantool-perl-0.15/t/050-async-client.t
===================================================================
--- libdr-tarantool-perl-0.15.orig/t/050-async-client.t	2012-06-04 07:29:01.000000000 +0100
+++ libdr-tarantool-perl-0.15/t/050-async-client.t	2013-04-05 00:10:00.000000000 +0100
@@ -265,7 +265,10 @@
                 my ($status, $code, $errstr) = @_;
                 cmp_ok $status, '~~', 'error', 'status';
                 cmp_ok $code, '>', 0, 'code';
-                like $errstr, qr{Partial key in}, 'errstr';
+                TODO: {
+                    local $TODO = 'This triggers https://bugs.launchpad.net/tarantool/+bug/1018775 on i386';
+                    like $errstr, qr{Partial key in}, 'errstr';
+                }
                 $cv->end;
             }
         );