Gentoo Archives: gentoo-commits

From: "Torsten Veller (tove)" <tove@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-perl/Crypt-Cracklib/files: 1.4-disable-reversed-test.patch
Date: Wed, 06 Jan 2010 21:12:04
Message-Id: E1NScnN-0004Ip-WD@stork.gentoo.org
1 tove 10/01/06 20:47:57
2
3 Added: 1.4-disable-reversed-test.patch
4 Log:
5 Disable reversed test (#278196)
6 (Portage version: 2.2_rc61/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 dev-perl/Crypt-Cracklib/files/1.4-disable-reversed-test.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Crypt-Cracklib/files/1.4-disable-reversed-test.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-perl/Crypt-Cracklib/files/1.4-disable-reversed-test.patch?rev=1.1&content-type=text/plain
13
14 Index: 1.4-disable-reversed-test.patch
15 ===================================================================
16 --- Crypt-Cracklib-1.4/t/01use.t
17 +++ Crypt-Cracklib-1.4/t/01use.t
18 @@ -1,4 +1,4 @@
19 -use Test::More tests => 19;
20 +use Test::More tests => 18;
21
22 BEGIN { use_ok( 'Crypt::Cracklib' ); }
23
24 @@ -28,7 +28,7 @@
25 like(fascist_check('dictionary'), qr/dictionary/, "dictionary");
26
27 # it is based on a (reversed) dictionary word
28 -like(fascist_check('1elppa'), qr/reversed/, "reversed dictionary");
29 +#like(fascist_check('1elppa'), qr/reversed/, "reversed dictionary");
30
31 # Ok
32 ok(fascist_check('Sil1ntBob') eq 'ok');