This commit is contained in:
Kevin Backhouse 2021-07-23 12:40:50 +01:00
parent 82057a6a1d
commit adb586ae9a
No known key found for this signature in database
GPG Key ID: 9DD01852EE40366E
2 changed files with 32 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,32 @@
# -*- coding: utf-8 -*-
import system_tests
import unittest
# test needs system_tests.BT.vv['enable_bmff']=1
bSkip=system_tests.BT.verbose_version().get('enable_bmff')!='1'
if bSkip:
raise unittest.SkipTest('*** requires enable_bmff=1 ***')
class BmffImageboxHandlerLargeAllocation(metaclass=system_tests.CaseMeta):
"""
Regression test for the bug described in:
https://github.com/Exiv2/exiv2/issues/1793
"""
url = "https://github.com/Exiv2/exiv2/issues/1793"
filename = "$data_path/issue_1793_poc.heic"
if bSkip:
commands=[]
retval=[]
stdin=[]
stderr=[]
stdout=[]
print("*** test skipped. requires enable_bmff=1***")
else:
commands = ["$exiv2 $filename"]
stdout = [""]
stderr = ["""Exiv2 exception in print action for file $filename:
$kerCorruptedMetadata
"""]
retval = [1]