On Thursday 19 June 2008 19:04:07 James Keenan via RT wrote: > On Thu Jun 19 18:41:07 2008, [EMAIL PROTECTED] wrote: > > I'm a little confused; why SKIP a passing TODO? > We know that one test is now passing on some operating systems: Darwin, > Linux, and this Solaris. But we don't know about others. > > Is there any way to write the test such that it is not treated as TODO > on those 3 OSes, but rather as a normal test (i.e., one which we expect > to pass)?
Some of the other TODO tests use code like: my @todo; @todo = ( todo => 'some reason' ) if $^O =~ /SomePlatform/; some_test_assertion( $expect, $receive, $description, @todo ); This seems appropriate here. -- c