1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-21 16:02:15 +03:00

sepgsql: update TAP test to use fat comma style

Adopt the style introduced by commit ce1b0f9da0 to this new test
file.

Author: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
Discussion: https://www.postgresql.org/message-id/87y0yv2har.fsf@wibble.ilmari.org
This commit is contained in:
Peter Eisentraut
2025-02-04 15:51:42 +01:00
parent a051e71e28
commit cc2c9fa696

View File

@ -211,10 +211,10 @@ $node->append_conf('postgresql.conf', 'log_statement=none');
my $result = run_log( my $result = run_log(
[ [
'postgres', '--single', 'postgres', '--single', '-F',
'-F', '-c', '-c' => 'exit_on_error=true',
'exit_on_error=true', '-D', '-D' => $node->data_dir,
$node->data_dir, 'template0' 'template0'
], ],
'<', '<',
$ENV{share_contrib_dir} . '/sepgsql.sql'); $ENV{share_contrib_dir} . '/sepgsql.sql');
@ -238,8 +238,11 @@ push @tests, 'truncate' if -f '/sys/fs/selinux/class/db_table/perms/truncate';
$node->command_ok( $node->command_ok(
[ [
$ENV{PG_REGRESS}, '--bindir=', '--inputdir=.', '--launcher', $ENV{PG_REGRESS},
'./launcher', @tests '--bindir' => '',
'--inputdir' => '.',
'--launcher' => './launcher',
@tests
], ],
'sepgsql tests'); 'sepgsql tests');