mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Skip on mswin to fix appveyor tests.
This commit is contained in:
parent
680c177ca4
commit
938098cd74
1 changed files with 10 additions and 1 deletions
|
@ -3,12 +3,21 @@
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
use Test::More tests => 1;
|
use Test::More;
|
||||||
use Test::Differences qw( eq_or_diff );
|
use Test::Differences qw( eq_or_diff );
|
||||||
|
|
||||||
use File::Find::Object ();
|
use File::Find::Object ();
|
||||||
use String::ShellQuote qw/ shell_quote /;
|
use String::ShellQuote qw/ shell_quote /;
|
||||||
|
|
||||||
|
if ($^O =~ /\AMSWin/)
|
||||||
|
{
|
||||||
|
plan skip_all => "command line exceeded on ms windows.";
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
plan tests => 1;
|
||||||
|
}
|
||||||
|
|
||||||
my %skip = (
|
my %skip = (
|
||||||
map { $_ => 1 }
|
map { $_ => 1 }
|
||||||
qw(
|
qw(
|
||||||
|
|
Loading…
Add table
Reference in a new issue