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.
26 lines
800 B
Python
26 lines
800 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from system_tests import CaseMeta, CopyTmpFiles, check_no_ASAN_UBSAN_errors
|
|
@CopyTmpFiles("$data_path/issue_2403_poc.exv")
|
|
|
|
class checkIconvSegFault(metaclass=CaseMeta):
|
|
url = """"""
|
|
description = """Test the fixcom action in the exiv2 app"""
|
|
|
|
filename = """$tmp_path/issue_2403_poc.exv"""
|
|
|
|
commands = ["""$exiv2 --verbose --log e --encode made_up_encoding fixcom $filename""",
|
|
"""$exiv2 --verbose --keep --encode UCS-2LE fixcom $filename"""]
|
|
retval = [1,0]
|
|
|
|
stdout = ["""File 1/1: $filename
|
|
""",
|
|
"""File 1/1: $filename
|
|
Setting Exif UNICODE user comment to "Test"
|
|
"""]
|
|
|
|
stderr = ["""Exiv2 exception in fixcom action for file $filename:
|
|
Cannot convert text encoding from 'made_up_encoding' to 'UTF-8'
|
|
""",
|
|
""""""]
|