diff options
| author | Thomas Huth <thuth@redhat.com> | 2022-04-14 13:46:55 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2022-04-20 08:54:39 +0200 |
| commit | 2051658061a102f49e68419a0052991222157b56 (patch) | |
| tree | 022ff86a0d893c21aeae0bcea5c11cabad6decd5 /tests/qtest/endianness-test.c | |
| parent | b0dd0a3d74e9ed9532bd4a7724bdafffe7509462 (diff) | |
| download | focaccia-qemu-2051658061a102f49e68419a0052991222157b56.tar.gz focaccia-qemu-2051658061a102f49e68419a0052991222157b56.zip | |
tests/qtest: Enable more tests for the "mipsel" target
Allow the same set of tests for all MIPS targets, so that "mipsel" now gets some additional test coverage, too. While we're at it, simplify the definitions for qtests_mips64 and qtests_mips64el. Message-Id: <20220414114655.604391-1-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/qtest/endianness-test.c')
| -rw-r--r-- | tests/qtest/endianness-test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/qtest/endianness-test.c b/tests/qtest/endianness-test.c index 9c03b72dc9..2f5a88bf4c 100644 --- a/tests/qtest/endianness-test.c +++ b/tests/qtest/endianness-test.c @@ -28,6 +28,7 @@ struct TestCase { static const TestCase test_cases[] = { { "i386", "pc", -1 }, { "mips", "malta", 0x10000000, .bswap = true }, + { "mipsel", "malta", 0x10000000 }, { "mips64", "magnum", 0x90000000, .bswap = true }, { "mips64", "pica61", 0x90000000, .bswap = true }, { "mips64", "malta", 0x10000000, .bswap = true }, |