# HG changeset patch # User Sergey Kandaurov # Date 1401096363 -14400 # Node ID 82b15c81978ea81ee04946c33e5ba679102be3bb # Parent 2711722a85c32aa9e35ee165d4b33d981928aa64 Tests: skipped tests on win32 that use shared memory. diff --git a/scgi_merge_params.t b/scgi_merge_params.t --- a/scgi_merge_params.t +++ b/scgi_merge_params.t @@ -23,6 +23,7 @@ select STDOUT; $| = 1; eval { require SCGI; }; plan(skip_all => 'SCGI not installed') if $@; +plan(skip_all => 'win32') if $^O eq 'MSWin32'; my $t = Test::Nginx->new()->has(qw/http scgi cache/)->plan(9) ->write_file_expand('nginx.conf', <<'EOF'); diff --git a/syslog.t b/syslog.t --- a/syslog.t +++ b/syslog.t @@ -22,6 +22,8 @@ use Test::Nginx; select STDERR; $| = 1; select STDOUT; $| = 1; +plan(skip_all => 'win32') if $^O eq 'MSWin32'; + my $t = Test::Nginx->new()->has(qw/http limit_req/); plan(skip_all => 'no syslog') unless $t->has_version('1.7.1');