Author: jkeenan Date: Sat Nov 3 10:27:36 2007 New Revision: 22692 Modified: trunk/t/configure/111-auto_gcc-01.t
Log: Place test of runstep() in TODO block. Cf.: http://rt.perl.org/rt3/Ticket/Display.html?id=47127. Reports that on systems where Perl 5 was built with gdbm (and so gdbm shows up in $Config{libs}, test attempts to link against libgdbm and fails to do so, causing test failure. Reason for this behavior is not yet known. Modified: trunk/t/configure/111-auto_gcc-01.t ============================================================================== --- trunk/t/configure/111-auto_gcc-01.t (original) +++ trunk/t/configure/111-auto_gcc-01.t Sat Nov 3 10:27:36 2007 @@ -37,7 +37,11 @@ isa_ok($step, $step_name); ok($step->description(), "$step_name has description"); -ok($step->runstep($conf), "runstep returned true value"); +TODO: { + local $TODO = + q{On some systems, tries to link to libgdbm and fails}; + ok($step->runstep($conf), "runstep returned true value"); +} pass("Keep Devel::Cover happy"); pass("Completed all tests in $0");