summaryrefslogtreecommitdiff
path: root/tests/qemu-arm/native_test.py
diff options
context:
space:
mode:
authorJim Mussared <jim.mussared@gmail.com>2019-08-19 10:59:27 +1000
committerDamien George <damien.p.george@gmail.com>2019-08-20 15:14:08 +1000
commit0bd1eb80ff49dd0d4ad0c369a83a5aadea995944 (patch)
tree49befa6047dd9e86e28b78675800f0678aa85cc6 /tests/qemu-arm/native_test.py
parent4ab5156c01bfd4a6304e26b1dc2d34163b8637c0 (diff)
qemu-arm: Add testing of frozen native modules.
- Split 'qemu-arm' from 'unix' for generating tests. - Add frozen module to the qemu-arm test build. - Add test that reproduces the requirement to half-word align native function data.
Diffstat (limited to 'tests/qemu-arm/native_test.py')
-rw-r--r--tests/qemu-arm/native_test.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/qemu-arm/native_test.py b/tests/qemu-arm/native_test.py
new file mode 100644
index 000000000..0b58433d9
--- /dev/null
+++ b/tests/qemu-arm/native_test.py
@@ -0,0 +1,5 @@
+import native_frozen_align
+
+native_frozen_align.native_x(1)
+native_frozen_align.native_y(2)
+native_frozen_align.native_z(3)