Signed-off-by: Pierrick Bouvier <[email protected]>
---
tests/tcg/meson.build | 1 +
tests/tcg/ppc64le/meson.build | 14 ++++++++++++++
2 files changed, 15 insertions(+)
create mode 100644 tests/tcg/ppc64le/meson.build
diff --git a/tests/tcg/meson.build b/tests/tcg/meson.build
index a23e63b8909..452af88f00b 100644
--- a/tests/tcg/meson.build
+++ b/tests/tcg/meson.build
@@ -148,6 +148,7 @@ subdir('mips64')
subdir('mips64el')
subdir('or1k')
subdir('ppc64')
+subdir('ppc64le')
image_targets = {}
exe_targets = []
diff --git a/tests/tcg/ppc64le/meson.build b/tests/tcg/ppc64le/meson.build
new file mode 100644
index 00000000000..1e464e23c14
--- /dev/null
+++ b/tests/tcg/ppc64le/meson.build
@@ -0,0 +1,14 @@
+if 'qemu-ppc64le' in emulators
+ tcg_tests += {
+ 'ppc64le-linux-user': {
+ 'cc': 'powerpc64le-linux-gnu-gcc',
+ 'cc_dockerfile': 'debian-all-test-cross',
+ 'cc_docker_arch': ['x86_64'],
+ 'cc_feat_cflags': cc_feat_cflags,
+ 'folder': 'ppc64le',
+ 'gdb_arch': 'ppc64le',
+ 'qemu': emulators['qemu-ppc64le'],
+ 'tests': tcg_tests_ppc64,
+ }
+ }
+endif
--
2.47.3