Commit 84c08a76 authored by Noah Misch's avatar Noah Misch

Fix one more TAP test to use standard command-line argument ordering.

Commit c67a86f7 caught most of these,
but this negative test escaped notice.  The test did pass, for the wrong
reason, under affected configurations.

Michael Paquier
parent b339a5cf
......@@ -25,7 +25,7 @@ command_ok([ 'initdb', '-X', "$tempdir/pgxlog", "$tempdir/data" ],
system_or_bail "rm -rf '$tempdir'/*";
command_fails(
[ 'initdb', "$tempdir/data", '-X', 'pgxlog' ],
[ 'initdb', '-X', 'pgxlog', "$tempdir/data" ],
'relative xlog directory not allowed');
system_or_bail "rm -rf '$tempdir'/*";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment