aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStephen Frost <sfrost@snowman.net>2017-03-18 13:46:45 -0400
committerStephen Frost <sfrost@snowman.net>2017-03-18 13:46:45 -0400
commit5abda5a3e9e7f2a472ccbb1b8389d9166d4a9eca (patch)
tree44780a263d3a3ea4948cf89e10916a3a1e8a1c08 /src
parent31a8b77a9244a0883e1968adcff9b6038e575d77 (diff)
downloadpostgresql-5abda5a3e9e7f2a472ccbb1b8389d9166d4a9eca.tar.gz
postgresql-5abda5a3e9e7f2a472ccbb1b8389d9166d4a9eca.zip
pg_dump: Remove "option requires an argument -- j" test
This is really testing getopt more than pg_dump, and what getopt returns exactly appears to differ based on platform, so remove this test. Per buildfarm.
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_dump/t/001_basic.pl5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/bin/pg_dump/t/001_basic.pl b/src/bin/pg_dump/t/001_basic.pl
index 9a3e7451658..2890cc2f5b5 100644
--- a/src/bin/pg_dump/t/001_basic.pl
+++ b/src/bin/pg_dump/t/001_basic.pl
@@ -82,11 +82,6 @@ command_fails_like(
'pg_dump: option --if-exists requires option -c/--clean');
command_fails_like(
- [ 'pg_dump', '-j' ],
- qr/\Qpg_dump: option requires an argument -- 'j'\E/,
- 'pg_dump: option requires an argument -- \'j\'');
-
-command_fails_like(
[ 'pg_dump', '-j3' ],
qr/\Qpg_dump: parallel backup only supported by the directory format\E/,
'pg_dump: parallel backup only supported by the directory format');