Browse Source
We are going to remove the microblazeel target, so the test is not required anymore. The little endian mode is tested already via the "microblaze" target, so we don't lose any test coverage here. While we're at it, simplify the "microblaze" target test now (in the file tests/functional/microblaze/test_s3adsp1800.py) since we don't need the separate super-class here anymore. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com> Message-ID: <20260226084608.11251-2-thuth@redhat.com>master
4 changed files with 3 additions and 52 deletions
@ -1,5 +0,0 @@ |
|||
# SPDX-License-Identifier: GPL-2.0-or-later |
|||
|
|||
tests_microblazeel_system_thorough = [ |
|||
's3adsp1800' |
|||
] |
|||
@ -1,26 +0,0 @@ |
|||
#!/usr/bin/env python3 |
|||
# |
|||
# Functional test that boots a microblaze Linux kernel and checks the console |
|||
# |
|||
# Copyright (c) 2018, 2021 Red Hat, Inc. |
|||
# |
|||
# This work is licensed under the terms of the GNU GPL, version 2 or |
|||
# later. See the COPYING file in the top-level directory. |
|||
|
|||
from microblaze.test_s3adsp1800 import MicroblazeMachine |
|||
|
|||
|
|||
class MicroblazeLittleEndianMachine(MicroblazeMachine): |
|||
|
|||
ASSET_IMAGE_LE = MicroblazeMachine.ASSET_IMAGE_LE |
|||
ASSET_IMAGE_BE = MicroblazeMachine.ASSET_IMAGE_BE |
|||
|
|||
def test_microblaze_s3adsp1800_legacy_le(self): |
|||
self.do_xmaton_le_test() |
|||
|
|||
def test_microblaze_s3adsp1800_legacy_be(self): |
|||
self.do_ballerina_be_test(force_endianness=True) |
|||
|
|||
|
|||
if __name__ == '__main__': |
|||
MicroblazeMachine.main() |
|||
Loading…
Reference in new issue