Author: thatsafunnyname
Date: Fri Mar  6 03:56:32 2009
New Revision: 699

Added:
    trunk/t/92-file_port.t
Modified:
    trunk/Changes
    trunk/MANIFEST

Log:
Added t/92-file_port.t as a developer-only and
   request-using-ENV test, to help maintain portable files,
   currently .indent.pro and .perltidyrc fall foul of portable
   filename characters as defined by ANSI C and perlport.



Modified: trunk/Changes
==============================================================================
--- trunk/Changes       (original)
+++ trunk/Changes       Fri Mar  6 03:56:32 2009
@@ -16,6 +16,10 @@
            .js and .css     file to only have one period/dot
      for greater portability.  VMS ODS-2 files can only have
      one period/dot.
+  Added t/92-file_port.t as a developer-only and
+    request-using-ENV test, to help maintain portable files,
+    currently .indent.pro and .perltidyrc fall foul of portable
+    filename characters as defined by ANSI C and perlport.

  =head2 Changes in Devel::NYTProf 2.08 (svn r685) 15th Feb 2009


Modified: trunk/MANIFEST
==============================================================================
--- trunk/MANIFEST      (original)
+++ trunk/MANIFEST      Fri Mar  6 03:56:32 2009
@@ -41,6 +41,7 @@
  t/80-version.t
  t/90-pod.t
  t/91-pod_coverage.t
+t/92-file_port.t
  t/lib/NYTProfTest.pm
  t/test01.p
  t/test01.rdt

Added: trunk/t/92-file_port.t
==============================================================================
--- (empty file)
+++ trunk/t/92-file_port.t      Fri Mar  6 03:56:32 2009
@@ -0,0 +1,15 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use Test::More;
+
+eval "use Test::Portability::Files";
+SKIP: {
+    skip "Test::Portability::Files required for testing filenames  
portability, this currently a developer-only test", 1 unless (!$@ &&  
(-d '.svn') && ($ENV{'NYTPROF_TEST_PORTABILITY_FILES'}) );
+    options(all_tests => 1);  # to be hyper-strict
+    run_tests();
+}
+
+1;

--~--~---------~--~----~------------~-------~--~----~
You've received this message because you are subscribed to
the Devel::NYTProf Development User group.

Group hosted at:  http://groups.google.com/group/develnytprof-dev
Project hosted at:  http://perl-devel-nytprof.googlecode.com
CPAN distribution:  http://search.cpan.org/dist/Devel-NYTProf

To post, email:  [email protected]
To unsubscribe, email:  [email protected]
-~----------~----~----~----~------~----~------~--~---

Reply via email to