blob: 548ebfe6dbf84cbcf85dd3bea41458c3c901384a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
. $srcdir/defs.inc || exit 3
# GnuPG through 2.1.7 would incorrect mark packets whose size is
# 2^32-1 as invalid and exit with status code 2.
i=$srcdir/4gb-packet.asc
if ! $GPG --list-packets $i >/dev/null
then
error Failed to parse 4GB packet.
else
info Can parse 4GB packets.
fi
|