deactivating new tests pending a fix for line ending issue
authorSteve Hancock <perltidy@users.sourceforge.net>
Wed, 26 Jan 2022 15:43:05 +0000 (07:43 -0800)
committerSteve Hancock <perltidy@users.sourceforge.net>
Wed, 26 Jan 2022 15:43:05 +0000 (07:43 -0800)
t/testwide-passthrough.t.skip
t/testwide-tidy.t.skip

index 74e0d907739614020f0488f31612ea39ed170a58..71a8a2924a93635b654b2d3b58355bb1880f7394 100644 (file)
@@ -59,9 +59,6 @@ sub test_file2file {
     note("Comparing contents:\n  $source_hex\n  $destination_hex\n");
 
     ok($source_hex eq $destination_hex, 'file content compare');
-
-    # This failed on Windows
-    ## ok( hex_compare_by_lines( $source_str, $destination_str ) );
 }
 
 sub test_scalar2scalar {
@@ -84,9 +81,6 @@ sub test_scalar2scalar {
 
     note("Comparing contents:\n  $source_hex\n  $destination_hex\n");
     ok($source_hex eq $destination_hex, 'scalar content compare');
-
-    # This failed on Windows:
-    ##ok( hex_compare_by_lines( $source, $destination ), 'scalar content compare' );
 }
 
 sub test_scalararray2scalararray {
@@ -112,9 +106,6 @@ sub test_scalararray2scalararray {
 
     note("Comparing contents:\n  $source_hex\n  $destination_hex\n");
     ok($source_hex eq $destination_hex, 'scalararray content compare');
-
-    # This failed on Windows
-    ##ok( hex_compare_by_lines( $source_str, $destination_str ), 'scalararray content compare' );
 }
 
 sub slurp_raw {
index badc011fb339bbd42092d8b030032ea5feaad6e9..7bff3f91d4dbdd2c0ca32999f945bc5c0edec53e 100644 (file)
@@ -14,11 +14,6 @@ use Perl::Tidy;
 
 # The test file is UTF-8 encoded
 
-# This attempted fix failed under Windows
-# The original version did hex compares of source and destination streams.  To
-# just test the -eos flag, and avoid line ending issues, this version does
-# line-by-line hex tests on chomped lines.
-
 plan( tests => 6 );
 
 test_all();
@@ -57,8 +52,6 @@ sub test_file2file {
     note("Comparing contents:\n  $tidy_hex\n  $destination_hex\n");
     ok($tidy_hex eq $destination_hex, 'file content compare');
 
-    # This failed on Windows
-    ##ok( hex_compare_by_lines( $tidy_str, $destination_str ), 'file2file content compare' );
 }
 
 sub test_scalar2scalar {
@@ -83,8 +76,6 @@ sub test_scalar2scalar {
     note("Comparing contents:\n  $tidy_hex\n  $destination_hex\n");
     ok($tidy_hex eq $destination_hex, 'scalar content compare');
 
-    # This failed on Windows
-    ## ok( hex_compare_by_lines( $tidy_str, $destination ), 'scalar2scalar content compare' );
 }
 
 sub test_scalararray2scalararray {
@@ -109,9 +100,6 @@ sub test_scalararray2scalararray {
 
     note("Comparing contents:\n  $tidy_hex\n  $destination_hex\n");
     ok($tidy_hex eq $destination_hex, 'scalararray content compare');
-
-    # This failed on Windows
-    ##ok( hex_compare_by_lines( $tidy_str, $destination_str ), 'scalararray content compare' );
 }
 
 sub slurp_raw {