summaryrefslogtreecommitdiff
path: root/src/bin/pg_ctl
diff options
context:
space:
mode:
Diffstat (limited to 'src/bin/pg_ctl')
-rw-r--r--src/bin/pg_ctl/t/004_logrotate.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/bin/pg_ctl/t/004_logrotate.pl b/src/bin/pg_ctl/t/004_logrotate.pl
index fa5ab74817..184728bdb3 100644
--- a/src/bin/pg_ctl/t/004_logrotate.pl
+++ b/src/bin/pg_ctl/t/004_logrotate.pl
@@ -6,6 +6,17 @@ use TestLib;
use Test::More tests => 1;
use Time::HiRes qw(usleep);
+if ($windows_os)
+{
+ plan skip_all => 'logrotate test not supported on Windows';
+ exit;
+}
+else
+{
+ plan tests => 1;
+}
+
+
my $tempdir = TestLib::tempdir;
my $node = get_new_node('primary');