From: Pranith Kumar <bobby.prani@gmail.com>
To: qemu-devel@nongnu.org
Cc: alex.bennee@linaro.org
Subject: [Qemu-devel] [PATCH v2 0/3] Add litmus tests for MTTCG consistency tests
Date: Sat, 20 Aug 2016 12:28:43 -0400 [thread overview]
Message-ID: <20160820162846.13501-1-bobby.prani@gmail.com> (raw)
Hello,
The following patch series adds litmus tests to test consistency for
MTTCG enabled qemu. These patches apply on top of the clean up
tests/tcg folder made by my previous patch series.
The tests were generated using the litmus tool. The sources and
instructions on how to generate these sources can be found in this
repository: https://github.com/pranith/qemu-litmus
The litmus tests will fail if you do not have the barrier emitting
patch series applied and will pass otherwise. I tested these on both
an x86 and an Aarch64 machine. These tests are currently enabled on
the trusty configuration on travis.
These and all the patches necessary to successfully emit barrier
instructions can be found at the following location:
git://github.com/pranith/qemu fence_v4_litmus
Thanks!
Pranith Kumar (3):
tests/tcg: Add i386 litmus test
tests/tcg: Add aarch64 litmus tests
travis: Enable litmus tests
.travis.yml | 8 +
tests/tcg/aarch64/litmus/ARMARM00.c | 501 +++++++++++++
tests/tcg/aarch64/litmus/ARMARM01.c | 504 +++++++++++++
tests/tcg/aarch64/litmus/ARMARM02.c | 571 ++++++++++++++
tests/tcg/aarch64/litmus/ARMARM03.c | 498 +++++++++++++
tests/tcg/aarch64/litmus/ARMARM04+BIS.c | 556 ++++++++++++++
tests/tcg/aarch64/litmus/ARMARM04+TER.c | 538 ++++++++++++++
tests/tcg/aarch64/litmus/ARMARM04.c | 556 ++++++++++++++
tests/tcg/aarch64/litmus/ARMARM05.c | 553 ++++++++++++++
tests/tcg/aarch64/litmus/ARMARM06+AP+AA.c | 581 +++++++++++++++
tests/tcg/aarch64/litmus/ARMARM06+AP+AP.c | 581 +++++++++++++++
tests/tcg/aarch64/litmus/ARMARM06.c | 581 +++++++++++++++
tests/tcg/aarch64/litmus/ARMARM07+SAL.c | 497 +++++++++++++
tests/tcg/aarch64/litmus/Makefile | 53 ++
tests/tcg/aarch64/litmus/README.txt | 22 +
tests/tcg/aarch64/litmus/affinity.c | 159 ++++
tests/tcg/aarch64/litmus/affinity.h | 34 +
tests/tcg/aarch64/litmus/comp.sh | 30 +
tests/tcg/aarch64/litmus/litmus_rand.c | 64 ++
tests/tcg/aarch64/litmus/litmus_rand.h | 29 +
tests/tcg/aarch64/litmus/outs.c | 148 ++++
tests/tcg/aarch64/litmus/outs.h | 49 ++
tests/tcg/aarch64/litmus/run.sh | 378 ++++++++++
tests/tcg/aarch64/litmus/show.awk | 2 +
tests/tcg/aarch64/litmus/utils.c | 1148 +++++++++++++++++++++++++++++
tests/tcg/aarch64/litmus/utils.h | 275 +++++++
tests/tcg/i386/litmus/Makefile | 42 ++
tests/tcg/i386/litmus/README.txt | 22 +
tests/tcg/i386/litmus/SAL.c | 491 ++++++++++++
tests/tcg/i386/litmus/affinity.c | 159 ++++
tests/tcg/i386/litmus/affinity.h | 34 +
tests/tcg/i386/litmus/comp.sh | 10 +
tests/tcg/i386/litmus/litmus_rand.c | 64 ++
tests/tcg/i386/litmus/litmus_rand.h | 29 +
tests/tcg/i386/litmus/outs.c | 148 ++++
tests/tcg/i386/litmus/outs.h | 49 ++
tests/tcg/i386/litmus/run.sh | 55 ++
tests/tcg/i386/litmus/show.awk | 2 +
tests/tcg/i386/litmus/utils.c | 1148 +++++++++++++++++++++++++++++
tests/tcg/i386/litmus/utils.h | 275 +++++++
40 files changed, 11444 insertions(+)
create mode 100644 tests/tcg/aarch64/litmus/ARMARM00.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM01.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM02.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM03.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM04+BIS.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM04+TER.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM04.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM05.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM06+AP+AA.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM06+AP+AP.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM06.c
create mode 100644 tests/tcg/aarch64/litmus/ARMARM07+SAL.c
create mode 100644 tests/tcg/aarch64/litmus/Makefile
create mode 100644 tests/tcg/aarch64/litmus/README.txt
create mode 100644 tests/tcg/aarch64/litmus/affinity.c
create mode 100644 tests/tcg/aarch64/litmus/affinity.h
create mode 100644 tests/tcg/aarch64/litmus/comp.sh
create mode 100644 tests/tcg/aarch64/litmus/litmus_rand.c
create mode 100644 tests/tcg/aarch64/litmus/litmus_rand.h
create mode 100644 tests/tcg/aarch64/litmus/outs.c
create mode 100644 tests/tcg/aarch64/litmus/outs.h
create mode 100755 tests/tcg/aarch64/litmus/run.sh
create mode 100644 tests/tcg/aarch64/litmus/show.awk
create mode 100644 tests/tcg/aarch64/litmus/utils.c
create mode 100644 tests/tcg/aarch64/litmus/utils.h
create mode 100644 tests/tcg/i386/litmus/Makefile
create mode 100644 tests/tcg/i386/litmus/README.txt
create mode 100644 tests/tcg/i386/litmus/SAL.c
create mode 100644 tests/tcg/i386/litmus/affinity.c
create mode 100644 tests/tcg/i386/litmus/affinity.h
create mode 100644 tests/tcg/i386/litmus/comp.sh
create mode 100644 tests/tcg/i386/litmus/litmus_rand.c
create mode 100644 tests/tcg/i386/litmus/litmus_rand.h
create mode 100644 tests/tcg/i386/litmus/outs.c
create mode 100644 tests/tcg/i386/litmus/outs.h
create mode 100755 tests/tcg/i386/litmus/run.sh
create mode 100644 tests/tcg/i386/litmus/show.awk
create mode 100644 tests/tcg/i386/litmus/utils.c
create mode 100644 tests/tcg/i386/litmus/utils.h
--
2.9.3
next reply other threads:[~2016-08-20 16:28 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-20 16:28 Pranith Kumar [this message]
2016-08-20 16:28 ` [Qemu-devel] [PATCH v2 1/3] tests/tcg: Add i386 litmus test Pranith Kumar
2016-08-20 16:28 ` [Qemu-devel] [PATCH v2 2/3] tests/tcg: Add aarch64 litmus tests Pranith Kumar
2016-08-20 16:28 ` [Qemu-devel] [PATCH v2 3/3] travis: Enable " Pranith Kumar
2016-08-20 21:19 ` [Qemu-devel] [PATCH v2 0/3] Add litmus tests for MTTCG consistency tests no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160820162846.13501-1-bobby.prani@gmail.com \
--to=bobby.prani@gmail.com \
--cc=alex.bennee@linaro.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.