]> granicus.if.org Git - postgresql/commitdiff
pg_dump: Remove "option requires an argument -- j" test
authorStephen Frost <sfrost@snowman.net>
Sat, 18 Mar 2017 17:46:45 +0000 (13:46 -0400)
committerStephen Frost <sfrost@snowman.net>
Sat, 18 Mar 2017 17:46:45 +0000 (13:46 -0400)
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.

src/bin/pg_dump/t/001_basic.pl

index 9a3e7451658c40b6345132b4bb6d2bf253ab2cb2..2890cc2f5b5715585c2dbb1894a896170981b9e3 100644 (file)
@@ -81,11 +81,6 @@ command_fails_like(
        qr/\Qpg_dump: option --if-exists requires option -c\/--clean\E/,
        '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/,