From: Ani Sinha <ani@anisinha.ca>
To: "Cleber Rosa" <crosa@redhat.com>,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>,
"Wainer dos Santos Moschetta" <wainersm@redhat.com>,
"Beraldo Leal" <bleal@redhat.com>
Cc: "Ani Sinha" <ani@anisinha.ca>,
"Daniel P . Berrangé" <berrange@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Maydell Peter" <peter.maydell@linaro.org>,
"John Snow" <jsnow@redhat.com>, "Thomas Huth" <thuth@redhat.com>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Igor Mammedov" <imammedo@redhat.com>,
"Michael Tsirkin" <mst@redhat.com>,
qemu-devel@nongnu.org
Subject: [PATCH v5 07/10] acpi/tests/avocado/bits: add biosbits config file for running bios tests
Date: Wed, 19 Oct 2022 08:28:25 +0530 [thread overview]
Message-ID: <20221019025828.683113-8-ani@anisinha.ca> (raw)
In-Reply-To: <20221019025828.683113-1-ani@anisinha.ca>
This change adds initial biosbits config file that instructs biosbits to run
bios test suits in batch mode. Additionally acpi and smbios structures are also
dumped.
Cc: Daniel P. Berrangé <berrange@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Maydell Peter <peter.maydell@linaro.org>
Cc: John Snow <jsnow@redhat.com>
Cc: Thomas Huth <thuth@redhat.com>
Cc: Alex Bennée <alex.bennee@linaro.org>
Cc: Igor Mammedov <imammedo@redhat.com>
Cc: Michael Tsirkin <mst@redhat.com>
Signed-off-by: Ani Sinha <ani@anisinha.ca>
---
.../avocado/acpi-bits/bits-config/bits-cfg.txt | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
create mode 100644 tests/avocado/acpi-bits/bits-config/bits-cfg.txt
diff --git a/tests/avocado/acpi-bits/bits-config/bits-cfg.txt b/tests/avocado/acpi-bits/bits-config/bits-cfg.txt
new file mode 100644
index 0000000000..8010804453
--- /dev/null
+++ b/tests/avocado/acpi-bits/bits-config/bits-cfg.txt
@@ -0,0 +1,18 @@
+# BITS configuration file
+[bits]
+
+# To run BITS in batch mode, set batch to a list of one or more of the
+# following keywords; BITS will then run all of the requested operations, then
+# save the log file to disk.
+#
+# test: Run the full BITS testsuite.
+# acpi: Dump all ACPI structures.
+# smbios: Dump all SMBIOS structures.
+#
+# Leave batch set to an empty string to disable batch mode.
+# batch =
+
+# Uncomment the following to run all available batch operations
+# please take a look at boot/python/init.py in bits zip file
+# to see how these options are parsed and used.
+batch = test acpi smbios
--
2.34.1
next prev parent reply other threads:[~2022-10-19 3:06 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-19 2:58 [PATCH v5 00/10] Introduce new acpi/smbios avocado tests using biosbits Ani Sinha
2022-10-19 2:58 ` [PATCH v5 01/10] acpi/tests/avocado/bits: initial commit of test scripts that are run by biosbits Ani Sinha
2022-10-19 2:58 ` [PATCH v5 02/10] acpi/tests/avocado/bits: add SPDX license identifiers for bios bits tests Ani Sinha
2022-10-19 15:30 ` Alex Bennée
2022-10-19 2:58 ` [PATCH v5 03/10] acpi/tests/avocado/bits: disable acpi PSS tests that are failing in biosbits Ani Sinha
2022-10-19 15:30 ` Alex Bennée
2022-10-19 15:42 ` Ani Sinha
2022-10-19 16:00 ` Daniel P. Berrangé
2022-10-19 2:58 ` [PATCH v5 04/10] acpi/tests/avocado/bits: add smilatency test suite from bits in order to disable it Ani Sinha
2022-10-19 2:58 ` [PATCH v5 05/10] acpi/tests/avocado/bits: add SPDX license identifiers for bios bits smilatency tests Ani Sinha
2022-10-19 15:32 ` Alex Bennée
2022-10-19 15:35 ` Ani Sinha
2022-10-20 10:47 ` Alex Bennée
2022-10-20 10:52 ` Ani Sinha
2022-10-19 2:58 ` [PATCH v5 06/10] acpi/tests/avocado/bits: disable smilatency test since it does not pass everytime Ani Sinha
2022-10-19 15:32 ` Alex Bennée
2022-10-19 2:58 ` Ani Sinha [this message]
2022-10-19 2:58 ` [PATCH v5 08/10] acpi/tests/avocado/bits: add acpi and smbios avocado tests that uses biosbits Ani Sinha
2022-10-19 6:29 ` Ani Sinha
2022-10-19 8:31 ` Ani Sinha
2022-10-19 9:35 ` Philippe Mathieu-Daudé
2022-10-19 10:12 ` Ani Sinha
2022-10-19 13:46 ` Ani Sinha
2022-10-19 2:58 ` [PATCH v5 09/10] acpi/tests/avocado/bits: add a README file to describe the test Ani Sinha
2022-10-19 15:33 ` Alex Bennée
2022-10-19 15:39 ` Ani Sinha
2022-10-19 2:58 ` [PATCH v5 10/10] MAINTAINERS: add myself as the maintainer for acpi biosbits avocado tests Ani Sinha
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=20221019025828.683113-8-ani@anisinha.ca \
--to=ani@anisinha.ca \
--cc=alex.bennee@linaro.org \
--cc=berrange@redhat.com \
--cc=bleal@redhat.com \
--cc=crosa@redhat.com \
--cc=f4bug@amsat.org \
--cc=imammedo@redhat.com \
--cc=jsnow@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=thuth@redhat.com \
--cc=wainersm@redhat.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).