Re: "Deprecated interface" ??
authorMichael G. Schwern <schwern@pobox.com>
Mon, 25 Jun 2001 14:35:51 +0000 (10:35 -0400)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 25 Jun 2001 17:50:38 +0000 (17:50 +0000)
Message-ID: <20010625143551.H13819@blackrider>

p4raw-id: //depot/perl@10931

lib/Test.pm

index eef2d38..3dab894 100644 (file)
@@ -9,7 +9,7 @@ use vars (qw($VERSION @ISA @EXPORT @EXPORT_OK $ntest $TestLevel), #public-ish
          qw($TESTOUT $ONFAIL %todo %history $planned @FAILDETAIL)#private-ish
          );
 
-$VERSION = '1.17';
+$VERSION = '1.18';
 require Exporter;
 @ISA=('Exporter');
 
@@ -319,11 +319,12 @@ sub skip ($;$$$) {
         return 1;
     } else {
         # backwards compatiblity (I think).  skip() used to be
-        # called like ok() and was expected to fail, which is weird.
-        warn <<WARN if $^W;
-This looks like a skip() using the very old interface.  Please upgrade to
-the documented interface as this has been deprecated.
-WARN
+        # called like ok(), which is weird.  I haven't decided what to do with
+        # this yet.
+#        warn <<WARN if $^W;
+#This looks like a skip() using the very old interface.  Please upgrade to
+#the documented interface as this has been deprecated.
+#WARN
 
        local($TestLevel) = $TestLevel+1;  #ignore this stack frame
         return &ok(@_);