Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 1b33907

Browse files
committed
Skip 'DROP EXTENSION' test in 001_pgbench.pl because of unstability on Windows
1 parent 5b215f2 commit 1b33907

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

t/001_pgbench.pl

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,16 @@
403403
");
404404
$node->restart();
405405

406-
$node->command_ok([ 'pgbench', '-T',
406+
# Some specifics of core PostgreSQL pgbench code don't allow to stable pass this
407+
# test on Windows OS.
408+
# See https://www.postgresql.org/message-id/flat/8225e78650dd69f69c8cff37ecce9a09%40postgrespro.ru
409+
SKIP:
410+
{
411+
skip "Socket allocation issues. ", 1
412+
if ($windows_os);
413+
$node->command_ok([ 'pgbench', '-T',
407414
"50", '-c', "$CLIENTS", '-j', "$THREADS" , '-f', "$bank"],
408415
'Conflicts with an AQO dropping command.');
416+
}
409417

410418
$node->stop();

0 commit comments

Comments
 (0)