You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucy.apache.org by ma...@apache.org on 2011/03/27 00:37:27 UTC

[lucy-commits] svn commit: r1085830 - /incubator/lucy/trunk/perl/t/binding/038-lock_free_registry.t

Author: marvin
Date: Sat Mar 26 23:37:27 2011
New Revision: 1085830

URL: http://svn.apache.org/viewvc?rev=1085830&view=rev
Log:
Always skip the LockFreeRegistry test file under Windows, since
Perl doesn't have real thread support on Windows.

Modified:
    incubator/lucy/trunk/perl/t/binding/038-lock_free_registry.t

Modified: incubator/lucy/trunk/perl/t/binding/038-lock_free_registry.t
URL: http://svn.apache.org/viewvc/incubator/lucy/trunk/perl/t/binding/038-lock_free_registry.t?rev=1085830&r1=1085829&r2=1085830&view=diff
==============================================================================
--- incubator/lucy/trunk/perl/t/binding/038-lock_free_registry.t (original)
+++ incubator/lucy/trunk/perl/t/binding/038-lock_free_registry.t Sat Mar 26 23:37:27 2011
@@ -22,7 +22,7 @@ BEGIN {
     if ( $ENV{LUCY_VALGRIND} ) {
         plan( skip_all => 'Known leaks' );
     }
-    elsif ( $Config{usethreads} ) {
+    elsif ( $Config{usethreads} and $^O !~ /mswin/i ) {
         plan( tests => 1 );
     }
     else {