changeset 408:82b15c81978e

Tests: skipped tests on win32 that use shared memory.
author Sergey Kandaurov <pluknet@nginx.com>
date Mon, 26 May 2014 13:26:03 +0400
parents 2711722a85c3
children a47d6e69463e
files scgi_merge_params.t syslog.t
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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');
--- 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');