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 c3dbd8871e9..a1e952a9d22 100644
--- a/tests/tcg/meson.build
+++ b/tests/tcg/meson.build
@@ -144,6 +144,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..f6c0fae7981
--- /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_host_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