Skip python tests using -pR

v0.27.3
Luis Diaz Mas 7 years ago committed by Luis Díaz Más
parent b9c079c1ea
commit 9a84d4b64f

@ -1,8 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import system_tests import system_tests
import unittest
@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class SubBoxLengthDataBufAbort(metaclass=system_tests.CaseMeta): class SubBoxLengthDataBufAbort(metaclass=system_tests.CaseMeta):
url = "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-9145" url = "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-9145"

@ -1,8 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import system_tests import system_tests
import unittest
@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class UncontrolledRecursion(metaclass=system_tests.CaseMeta): class UncontrolledRecursion(metaclass=system_tests.CaseMeta):
url = "https://github.com/Exiv2/exiv2/issues/216" url = "https://github.com/Exiv2/exiv2/issues/216"

@ -1,8 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import system_tests import system_tests
import unittest
@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class ThrowsWhenIFDsAreMalformed(metaclass=system_tests.CaseMeta): class ThrowsWhenIFDsAreMalformed(metaclass=system_tests.CaseMeta):
url = "https://github.com/Exiv2/exiv2/issues/511" url = "https://github.com/Exiv2/exiv2/issues/511"

@ -1,7 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import system_tests import system_tests
import unittest
@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class CheckDumpSubFiles(metaclass=system_tests.CaseMeta): class CheckDumpSubFiles(metaclass=system_tests.CaseMeta):
url = "http://dev.exiv2.org/issues/1108" url = "http://dev.exiv2.org/issues/1108"

Loading…
Cancel
Save