diff options
Diffstat (limited to 'src/bin/pg_resetwal/t/001_basic.pl')
-rw-r--r-- | src/bin/pg_resetwal/t/001_basic.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bin/pg_resetwal/t/001_basic.pl b/src/bin/pg_resetwal/t/001_basic.pl index 323cd483cf3..d6bbbd0ceda 100644 --- a/src/bin/pg_resetwal/t/001_basic.pl +++ b/src/bin/pg_resetwal/t/001_basic.pl @@ -173,6 +173,12 @@ command_fails_like( qr/must be greater than/, 'fails with -x value too small'); +# --char-signedness +command_fails_like( + [ 'pg_resetwal', '--char-signedness', 'foo', $node->data_dir ], + qr/error: invalid argument for option --char-signedness/, + 'fails with incorrect --char-signedness option'); + # run with control override options my $out = (run_command([ 'pg_resetwal', '--dry-run', $node->data_dir ]))[0]; |