Signed-off-by: Pierrick Bouvier <[email protected]>
---
tests/tcg/meson.build | 1 +
tests/tcg/mips64el/meson.build | 14 ++++++++++++++
2 files changed, 15 insertions(+)
create mode 100644 tests/tcg/mips64el/meson.build
diff --git a/tests/tcg/meson.build b/tests/tcg/meson.build
index 2f4bb4b579b..816a6054d93 100644
--- a/tests/tcg/meson.build
+++ b/tests/tcg/meson.build
@@ -145,6 +145,7 @@ subdir('loongarch64')
subdir('m68k')
subdir('mips')
subdir('mips64')
+subdir('mips64el')
image_targets = {}
exe_targets = []
diff --git a/tests/tcg/mips64el/meson.build b/tests/tcg/mips64el/meson.build
new file mode 100644
index 00000000000..16bc2f32509
--- /dev/null
+++ b/tests/tcg/mips64el/meson.build
@@ -0,0 +1,14 @@
+if 'qemu-mips64el' in emulators
+ tcg_tests += {
+ 'mips64el-linux-user': {
+ 'cc': 'mips64el-linux-gnuabi64-gcc',
+ 'cc_dockerfile': 'debian-all-test-cross',
+ 'cc_docker_arch': ['aarch64', 'x86_64'],
+ 'cc_feat_cflags': cc_feat_cflags,
+ 'folder': 'mips64el',
+ 'gdb_arch': 'mips64el',
+ 'qemu': emulators['qemu-mips64el'],
+ 'tests': tcg_tests_mips64,
+ }
+ }
+endif
--
2.47.3