You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
768 B
Python
24 lines
768 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import system_tests
|
|
|
|
|
|
class BufferOverflowInSscanf(metaclass=system_tests.CaseMeta):
|
|
"""
|
|
This requires some sort of memchecker, either valgrind or ASAN.
|
|
"""
|
|
|
|
url = "http://dev.exiv2.org/issues/447"
|
|
|
|
filename = "$data_path/exiv2-bug447.jpg"
|
|
commands = ["$exiv2 -u -pi $filename"]
|
|
|
|
stdout = ["""Iptc.Application2.Caption String 0
|
|
Iptc.Application2.DateCreated Date 8 2005-08-09
|
|
Iptc.Application2.TimeCreated Time 11 01:28:31-07:00
|
|
"""]
|
|
stderr = ["""Error: Directory NikonPreview with 8224 entries considered invalid; not read.
|
|
Warning: Directory Photo, entry 0x9286 has unknown Exif (TIFF) type 14; setting type size 1.
|
|
"""]
|
|
retval = [0]
|