[PATCH] D56251: python compat - assertraisesregex

serge via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 3 03:20:04 PST 2019


serge-sans-paille created this revision.
serge-sans-paille added a reviewer: michaelplatings.
Herald added a subscriber: llvm-commits.

Repository:
  rL LLVM

https://reviews.llvm.org/D56251

Files:
  bindings/python/llvm/tests/base.py
  bindings/python/llvm/tests/test_disassembler.py


Index: bindings/python/llvm/tests/test_disassembler.py
===================================================================
--- bindings/python/llvm/tests/test_disassembler.py
+++ bindings/python/llvm/tests/test_disassembler.py
@@ -19,7 +19,7 @@
         self.assertEqual(s, '\tjcxz\t-127')
 
     def test_nonexistent_triple(self):
-        with self.assertRaisesRegexp(Exception, "Could not obtain disassembler for triple"):
+        with self.assertRaisesRegex(Exception, "Could not obtain disassembler for triple"):
             Disassembler("nonexistent-triple-raises")
 
     def test_get_instructions(self):
Index: bindings/python/llvm/tests/base.py
===================================================================
--- bindings/python/llvm/tests/base.py
+++ bindings/python/llvm/tests/base.py
@@ -1,6 +1,8 @@
 import os.path
+import sys
 import unittest
 
+
 POSSIBLE_TEST_BINARIES = [
     'libreadline.so.5',
     'libreadline.so.6',
@@ -15,6 +17,9 @@
 ]
 
 class TestBase(unittest.TestCase):
+    if sys.version_info.major == 2:
+        assertRaisesRegex = TestBase.assertRaisesRegexp
+
     def get_test_binary(self):
         """Helper to obtain a test binary for object file testing.
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D56251.180014.patch
Type: text/x-patch
Size: 1202 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190103/d9af265e/attachment.bin>


More information about the llvm-commits mailing list