Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
882c592
)
Fix one more TAP test to use standard command-line argument ordering.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Thu, 7 Jan 2016 22:36:43 +0000
(17:36 -0500)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Thu, 7 Jan 2016 22:36:43 +0000
(17:36 -0500)
Commit
84c08a7649b8c6dd488dfe0e37ab017e8059cd33
should have been
back-patched into 9.4, but was not, so this test continued to pass for
the wrong reason there. Noted while investigating other failures.
src/bin/initdb/t/001_initdb.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/initdb/t/001_initdb.pl
b/src/bin/initdb/t/001_initdb.pl
index d12be842c1156e7996335fb0feed2eadf2e77602..eef2300009d03ef506a620b66169151e02e89024 100644
(file)
--- 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'/*";