Files
clang-p2996/cross-project-tests/debuginfo-tests/dexter/dex/utils/UnitTests.py
Tobias Hieta f98ee40f4b [NFC][Py Reformat] Reformat python files in the rest of the dirs
This is an ongoing series of commits that are reformatting our
Python code. This catches the last of the python files to
reformat. Since they where so few I bunched them together.

Reformatting is done with `black`.

If you end up having problems merging this commit because you
have made changes to a python file, the best way to handle that
is to run git checkout --ours <yourfile> and then reformat it
with black.

If you run into any problems, post to discourse about it and
we will try to help.

RFC Thread below:

https://discourse.llvm.org/t/rfc-document-and-standardize-python-code-style

Reviewed By: jhenderson, #libc, Mordante, sivachandra

Differential Revision: https://reviews.llvm.org/D150784
2023-05-25 11:17:05 +02:00

63 lines
2.1 KiB
Python

# DExTer : Debugging Experience Tester
# ~~~~~~ ~ ~~ ~ ~~
#
# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
"""Unit test harness."""
from fnmatch import fnmatch
import os
import unittest
from io import StringIO
from dex.utils import is_native_windows, has_pywin32
from dex.utils import PreserveAutoColors, PrettyOutput
from dex.utils import Timer
class DexTestLoader(unittest.TestLoader):
def _match_path(self, path, full_path, pattern):
"""Don't try to import platform-specific modules for the wrong platform
during test discovery.
"""
d = os.path.basename(os.path.dirname(full_path))
if is_native_windows():
if d == "posix":
return False
if d == "windows":
return has_pywin32()
else:
if d == "windows":
return False
elif d == "dbgeng":
return False
return fnmatch(path, pattern)
def unit_tests_ok(context):
unittest.TestCase.maxDiff = None # remove size limit from diff output.
with Timer("unit tests"):
suite = DexTestLoader().discover(context.root_directory, pattern="*.py")
stream = StringIO()
result = unittest.TextTestRunner(verbosity=2, stream=stream).run(suite)
ok = result.wasSuccessful()
if not ok or context.options.unittest == "show-all":
with PreserveAutoColors(context.o):
context.o.auto_reds.extend([r"FAIL(ED|\:)", r"\.\.\.\s(FAIL|ERROR)$"])
context.o.auto_greens.extend([r"^OK$", r"\.\.\.\sok$"])
context.o.auto_blues.extend([r"^Ran \d+ test"])
context.o.default("\n")
for line in stream.getvalue().splitlines(True):
context.o.auto(line, stream=PrettyOutput.stderr)
return ok
class TestUnitTests(unittest.TestCase):
def test_sanity(self):
self.assertEqual(1, 1)