[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[kvm-unit-tests PATCH v10 0/7] MTTCG sanity tests for ARM
From: |
Alex Bennée |
Subject: |
[kvm-unit-tests PATCH v10 0/7] MTTCG sanity tests for ARM |
Date: |
Tue, 7 Mar 2023 11:28:38 +0000 |
I last had a go at getting these up-streamed at the end of 2021 so
its probably worth having another go. From the last iteration a
number of the groundwork patches did get merged:
Subject: [kvm-unit-tests PATCH v9 0/9] MTTCG sanity tests for ARM
Date: Thu, 2 Dec 2021 11:53:43 +0000
Message-Id: <20211202115352.951548-1-alex.bennee@linaro.org>
So this leaves a minor gtags patch, adding the isaac RNG library which
would also be useful for other users, see:
Subject: [kvm-unit-tests PATCH v3 11/27] lib: Add random number generator
Date: Tue, 22 Nov 2022 18:11:36 +0200
Message-Id: <20221122161152.293072-12-mlevitsk@redhat.com>
Otherwise there are a few minor checkpatch tweaks.
I would still like to enable KVM unit tests inside QEMU as things like
the x86 APIC tests are probably a better fit for unit testing TCG
emulation than booting a whole OS with various APICs enabled.
Alex Bennée (7):
Makefile: add GNU global tags support
add .gitpublish metadata
lib: add isaac prng library from CCAN
arm/tlbflush-code: TLB flush during code execution
arm/locking-tests: add comprehensive locking test
arm/barrier-litmus-tests: add simple mp and sal litmus tests
arm/tcg-test: some basic TCG exercising tests
Makefile | 5 +-
arm/Makefile.arm | 2 +
arm/Makefile.arm64 | 2 +
arm/Makefile.common | 6 +-
lib/arm/asm/barrier.h | 19 ++
lib/arm64/asm/barrier.h | 50 +++++
lib/prng.h | 83 +++++++
lib/prng.c | 163 ++++++++++++++
arm/tcg-test-asm.S | 171 +++++++++++++++
arm/tcg-test-asm64.S | 170 ++++++++++++++
arm/barrier-litmus-test.c | 450 ++++++++++++++++++++++++++++++++++++++
arm/locking-test.c | 321 +++++++++++++++++++++++++++
arm/spinlock-test.c | 87 --------
arm/tcg-test.c | 340 ++++++++++++++++++++++++++++
arm/tlbflush-code.c | 209 ++++++++++++++++++
arm/unittests.cfg | 170 ++++++++++++++
.gitignore | 3 +
.gitpublish | 18 ++
18 files changed, 2180 insertions(+), 89 deletions(-)
create mode 100644 lib/prng.h
create mode 100644 lib/prng.c
create mode 100644 arm/tcg-test-asm.S
create mode 100644 arm/tcg-test-asm64.S
create mode 100644 arm/barrier-litmus-test.c
create mode 100644 arm/locking-test.c
delete mode 100644 arm/spinlock-test.c
create mode 100644 arm/tcg-test.c
create mode 100644 arm/tlbflush-code.c
create mode 100644 .gitpublish
--
2.39.2
- [kvm-unit-tests PATCH v10 0/7] MTTCG sanity tests for ARM,
Alex Bennée <=
- [kvm-unit-tests PATCH v10 2/7] add .gitpublish metadata, Alex Bennée, 2023/03/07
- [kvm-unit-tests PATCH v10 4/7] arm/tlbflush-code: TLB flush during code execution, Alex Bennée, 2023/03/07
- [kvm-unit-tests PATCH v10 3/7] lib: add isaac prng library from CCAN, Alex Bennée, 2023/03/07
- [kvm-unit-tests PATCH v10 1/7] Makefile: add GNU global tags support, Alex Bennée, 2023/03/07
- [kvm-unit-tests PATCH v10 6/7] arm/barrier-litmus-tests: add simple mp and sal litmus tests, Alex Bennée, 2023/03/07
- [kvm-unit-tests PATCH v10 7/7] arm/tcg-test: some basic TCG exercising tests, Alex Bennée, 2023/03/07