Once again syncing after too long an absence
[p5sagit/p5-mst-13.2.git] / t / lib / st-lock.t
index 28fe664..77d73bb 100644 (file)
@@ -1,10 +1,19 @@
 #!./perl
 
-# $Id: lock.t,v 1.0.1.1 2000/09/28 21:44:06 ram Exp $
+# $Id: lock.t,v 1.0.1.4 2001/01/03 09:41:00 ram Exp $
 #
 #  @COPYRIGHT@
 #
 # $Log: lock.t,v $
+# Revision 1.0.1.4  2001/01/03 09:41:00  ram
+# patch7: use new CAN_FLOCK routine to determine whether to run tests
+#
+# Revision 1.0.1.3  2000/10/26 17:11:27  ram
+# patch5: just check $^O, there's no need for the whole Config
+#
+# Revision 1.0.1.2  2000/10/23 18:03:07  ram
+# patch4: protected calls to flock() for dos platform
+#
 # Revision 1.0.1.1  2000/09/28 21:44:06  ram
 # patch2: created.
 #
@@ -19,10 +28,7 @@ sub BEGIN {
         print "1..0 # Skip: Storable was not built\n";
         exit 0;
     }
-    if (!$Config{'d_flock'} && !$Config{'d_fcntl'} && !$Config{'d_lockf'}) {
-        print "1..0 # Skip: no flock or flock emulation on this platform\n";
-        exit 0;
-    }
+
     require 'lib/st-dump.pl';
 }
 
@@ -30,6 +36,11 @@ sub ok;
 
 use Storable qw(lock_store lock_retrieve);
 
+unless (&Storable::CAN_FLOCK) {
+    print "1..0 # Skip: fcntl/flock emulation broken on this platform\n";
+       exit 0;
+}
+
 print "1..5\n";
 
 @a = ('first', undef, 3, -4, -3.14159, 456, 4.5);