As I currently work on vector instruction support for s390x/tcg, for now I wrote my tests for kvm-unit-tests, but tests/tcg seems to be a better fit. The only tricky part is testing interrupt handling, but that also seems to be possible using some signal hackery.
This is only one test to discuss if the approach make sense. These patches only work when applied on top of: https://github.com/davidhildenbrand/qemu/tree/vx David Hildenbrand (2): tests/tcg: Allow targets to set the optimization level tests/tcg: target/s390: Add test for VECTOR LOAD GR FROM VR ELEMENT tests/tcg/Makefile | 4 +-- tests/tcg/s390x/Makefile.target | 3 ++- tests/tcg/s390x/helper.h | 28 +++++++++++++++++++++ tests/tcg/s390x/signal_helper.inc.c | 39 +++++++++++++++++++++++++++++ tests/tcg/s390x/vlgv.c | 37 +++++++++++++++++++++++++++ 5 files changed, 108 insertions(+), 3 deletions(-) create mode 100644 tests/tcg/s390x/helper.h create mode 100644 tests/tcg/s390x/signal_helper.inc.c create mode 100644 tests/tcg/s390x/vlgv.c -- 2.17.2