From: Jacob Lifshay Date: Sat, 23 Sep 2023 01:25:21 +0000 (-0700) Subject: switch UTF-8 validation tests to use MemMMap so it gets some testing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5b132e20ff91552e3e0bb29f5ac2136259bab0f;p=openpower-isa.git switch UTF-8 validation tests to use MemMMap so it gets some testing --- diff --git a/src/openpower/decoder/isa/test_caller_svp64_utf_8_validation.py b/src/openpower/decoder/isa/test_caller_svp64_utf_8_validation.py index b3b41a61..43cbf828 100644 --- a/src/openpower/decoder/isa/test_caller_svp64_utf_8_validation.py +++ b/src/openpower/decoder/isa/test_caller_svp64_utf_8_validation.py @@ -41,7 +41,7 @@ class TestSVP64UTF8ValidationBase(TestRunnerBase): start = self.SPLIT_INDEX end = start + 1 # can't do raise SkipTest if `start == end`, it makes unittest break - super().__init__(cases[start:end]) + super().__init__(cases[start:end], use_mmap_mem=True) def setUp(self): super().setUp()