Skip to content

Commit

Permalink
Regression test for Exiv2#1838
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinbackhouse committed Aug 3, 2021
1 parent 9ccd5cb commit 388f254
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Binary file added test/data/issue_1838_poc.crw
Binary file not shown.
17 changes: 17 additions & 0 deletions tests/bugfixes/github/test_issue_1838.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# -*- coding: utf-8 -*-

from system_tests import CaseMeta, path, check_no_ASAN_UBSAN_errors

class FloatToRationalCastOutOfRange(metaclass=CaseMeta):
"""
Test for the bug described in:
https://github.com/Exiv2/exiv2/issues/1838
"""
url = "https://github.com/Exiv2/exiv2/issues/1838"

filename = path("$data_path/issue_1838_poc.crw")
commands = ["$exiv2 $filename"]
stderr = [""]
retval = [0]

compare_stdout = check_no_ASAN_UBSAN_errors

0 comments on commit 388f254

Please sign in to comment.