diff options
author | Karl Williamson <khw@cpan.org> | 2015-09-04 09:10:58 -0600 |
---|---|---|
committer | Karl Williamson <khw@cpan.org> | 2015-09-04 10:31:02 -0600 |
commit | 206f7a49757723b1182e7dcd043a8854a03fa026 (patch) | |
tree | 062181c8a26b46607393f004e8474c871f632d6b /t | |
parent | 5fc230f1acd1b5315a8ccc298d9eddbb7d6be5ca (diff) | |
download | perl-206f7a49757723b1182e7dcd043a8854a03fa026.tar.gz |
porting/maintainers.t: Skip on EBCDIC
Diffstat (limited to 't')
-rw-r--r-- | t/porting/maintainers.t | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/t/porting/maintainers.t b/t/porting/maintainers.t index cd4519d5f4..f82656dce0 100644 --- a/t/porting/maintainers.t +++ b/t/porting/maintainers.t @@ -19,6 +19,10 @@ if ( $Config{usecrosscompile} ) { skip_all( "Odd failures during cross-compilation" ); } +if ($::IS_EBCDIC) { + skip_all("Fails on EBCDIC machines, prob. because of different sort order"); +} + use strict; use warnings; use Maintainers qw(show_results process_options finish_tap_output); |