Skip python tests using -pR

This commit is contained in:
Luis Diaz Mas
2018-11-22 14:39:06 +01:00
committed by Luis Díaz Más
parent b9c079c1ea
commit 9a84d4b64f
4 changed files with 8 additions and 3 deletions
+2 -1
View File
@@ -1,8 +1,9 @@
# -*- coding: utf-8 -*-
import system_tests
import unittest
@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class SubBoxLengthDataBufAbort(metaclass=system_tests.CaseMeta):
url = "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-9145"
+2 -1
View File
@@ -1,8 +1,9 @@
# -*- coding: utf-8 -*-
import system_tests
import unittest
@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class UncontrolledRecursion(metaclass=system_tests.CaseMeta):
url = "https://github.com/Exiv2/exiv2/issues/216"
+2 -1
View File
@@ -1,8 +1,9 @@
# -*- coding: utf-8 -*-
import system_tests
import unittest
@unittest.skip("Skipping test using option -pR (only for Debug mode)")
class ThrowsWhenIFDsAreMalformed(metaclass=system_tests.CaseMeta):
url = "https://github.com/Exiv2/exiv2/issues/511"