aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py
diff options
context:
space:
mode:
Diffstat (limited to 'packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py')
-rw-r--r--packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py b/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py
index 0fdc43bb9feb..93eac1ecd105 100644
--- a/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py
+++ b/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py
@@ -7,7 +7,6 @@ foreign-architecture object files.
from __future__ import print_function
-
import os.path
import re
@@ -16,6 +15,7 @@ from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
+
class TestImageListMultiArchitecture(TestBase):
mydir = TestBase.compute_mydir(__file__)
@@ -35,7 +35,11 @@ class TestImageListMultiArchitecture(TestBase):
}
for image_name in images:
- file_name = os.path.abspath(os.path.join(os.path.dirname(__file__), "bin", image_name))
+ file_name = os.path.abspath(
+ os.path.join(
+ os.path.dirname(__file__),
+ "bin",
+ image_name))
expected_triple_and_arch_regex = images[image_name]
self.runCmd("file {}".format(file_name))