aboutsummaryrefslogtreecommitdiff
path: root/tests/lcitool
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2022-01-05 13:49:46 +0000
committerAlex Bennée <alex.bennee@linaro.org>2022-01-18 16:42:42 +0000
commitbb317c325830ac7c9e1f4b6fef23146ad85bc1be (patch)
tree9a5f26d9c7effecfc0d734caa81a765369928f3b /tests/lcitool
parente482191643256aca6d6e84568f510da1abda219d (diff)
downloadqemu-bb317c325830ac7c9e1f4b6fef23146ad85bc1be.zip
qemu-bb317c325830ac7c9e1f4b6fef23146ad85bc1be.tar.gz
qemu-bb317c325830ac7c9e1f4b6fef23146ad85bc1be.tar.bz2
tests/docker: auto-generate ubuntu2004.docker with lcitool
This commit is best examined using the "-b" option to diff. Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20211215141949.3512719-12-berrange@redhat.com> Message-Id: <20220105135009.1584676-12-alex.bennee@linaro.org>
Diffstat (limited to 'tests/lcitool')
-rwxr-xr-xtests/lcitool/refresh9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/lcitool/refresh b/tests/lcitool/refresh
index 1e30674..310bad1 100755
--- a/tests/lcitool/refresh
+++ b/tests/lcitool/refresh
@@ -65,12 +65,19 @@ ubuntu1804_skipssh = [
"ENV QEMU_CONFIGURE_OPTS --disable-libssh\n"
]
+ubuntu2004_tsanhack = [
+ "# Apply patch https://reviews.llvm.org/D75820\n",
+ "# This is required for TSan in clang-10 to compile with QEMU.\n",
+ "RUN sed -i 's/^const/static const/g' /usr/lib/llvm-10/lib/clang/10.0.0/include/sanitizer/tsan_interface.h\n"
+]
+
try:
generate_dockerfile("centos8", "centos-8")
generate_dockerfile("fedora", "fedora-35")
generate_dockerfile("ubuntu1804", "ubuntu-1804",
trailer="".join(ubuntu1804_skipssh))
-
+ generate_dockerfile("ubuntu2004", "ubuntu-2004",
+ trailer="".join(ubuntu2004_tsanhack))
sys.exit(0)
except Exception as ex:
print(str(ex), file=sys.stderr)