diff options
author | Noah Misch | 2015-05-02 20:46:52 +0000 |
---|---|---|
committer | Noah Misch | 2015-05-02 20:46:52 +0000 |
commit | 84c08a7649b8c6dd488dfe0e37ab017e8059cd33 (patch) | |
tree | 6aab300b578d9a94f7e68cb00c9ab61177346b81 | |
parent | b339a5cf900bb3e72f58a7a96903e3a0d557a85a (diff) |
Fix one more TAP test to use standard command-line argument ordering.
Commit c67a86f7da90c30b81f91957023fb752f06f0598 caught most of these,
but this negative test escaped notice. The test did pass, for the wrong
reason, under affected configurations.
Michael Paquier
-rw-r--r-- | src/bin/initdb/t/001_initdb.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/initdb/t/001_initdb.pl b/src/bin/initdb/t/001_initdb.pl index d12be842c1..eef2300009 100644 --- a/src/bin/initdb/t/001_initdb.pl +++ b/src/bin/initdb/t/001_initdb.pl @@ -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'/*"; |