Opened 12 years ago
Closed 12 years ago
#610 closed defect (fixed)
Search::Xapian 1.2.13 fails tests against perl 5.16.1
Reported by: | jbergstroem | Owned by: | Olly Betts |
---|---|---|---|
Priority: | normal | Milestone: | 1.2.14 |
Component: | Search::Xapian | Version: | 1.2.13 |
Severity: | normal | Keywords: | |
Cc: | Blocked By: | ||
Blocking: | Operating System: | All |
Description
Using perl 5.16.1, I get this test failure:
t/10query.t ........... 1/10 # Failed test at t/10query.t line 37. # 'USAGE: Search::Xapian::Query->new('term') or Search::Xapian::Query->new(OP, <args>) at t/10query.t line 34. # ' # doesn't match '(?^:^USAGE: Search::Xapian::Query->new\('term'\) or Search::Xapian::Query->new\(OP, <args>\) at \S+/10query\.t line \d+$)' # Looks like you failed 1 test of 10.
Reduced case (taken from https://bugs.gentoo.org/show_bug.cgi?id=453450)
use Test::More; BEGIN { plan tests => 1 }; use Search::Xapian qw(:standard); eval { Search::Xapian::Query->new("hello", 1, 2, 3, 4); }; ok(defined $@, "Bad query ctor threw exception");
reduced test case by Anthony Basile, bug originally found by Diego Elio Pettenò.
Change History (4)
comment:1 by , 12 years ago
comment:2 by , 12 years ago
Milestone: | → 1.2.14 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
comment:3 by , 12 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
Apparently that doesn't fix it, according to blueness on IRC.
I don't have easy access to Perl 5.16 currently (it's in debian experimental, but trying to install it wanted to uninstall packages I find rather useful, like xorg), so I'd appreciate it if someone who does could work out why this regex isn't matching.
FWIW, this problem is entirely in the testsuite, so disabling this test is a reasonable workaround.
comment:4 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
I tried the testcase without the Search::Xapian bits with a hand-built Perl 5.16.2 and it passed, so blueness retested and confirmed that the applied fix does actually work:
09:47 < blueness> olly, i applied the patch to 1.2.13 and it works 09:48 < blueness> so i must have done something wrong the first time 09:48 < blueness> to be clear, This is perl 5, version 16, subversion 2 (v5.16.2) built for x86_64-linux 09:48 < blueness> Search-Xapian-1.2.13.0 09:49 < blueness> applied commit 376e1edb from the github git repo
That commit is r17039 in SVN.
Replying to jbergstroem:
Actually I cut that off one line too short. The correct reduced case is