diff mbox

[07/12] docker: Add clang test

Message ID 1454664263-25969-8-git-send-email-famz@redhat.com
State New
Headers show

Commit Message

Fam Zheng Feb. 5, 2016, 9:24 a.m. UTC
The configure options are suggested by John Snow <jsnow@redhat.com>.

Signed-off-by: Fam Zheng <famz@redhat.com>
---
 tests/docker/test-clang.sh | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)
 create mode 100755 tests/docker/test-clang.sh
diff mbox

Patch

diff --git a/tests/docker/test-clang.sh b/tests/docker/test-clang.sh
new file mode 100755
index 0000000..9660778
--- /dev/null
+++ b/tests/docker/test-clang.sh
@@ -0,0 +1,26 @@ 
+#!/bin/bash -e
+#
+# Compile and check with clang.
+#
+# Copyright (c) 2016 Red Hat Inc.
+#
+# Authors:
+#  Fam Zheng <famz@redhat.com>
+#
+# This work is licensed under the terms of the GNU GPL, version 2
+# or (at your option) any later version. See the COPYING file in
+# the top-level directory.
+
+. common.rc
+
+requires clang
+
+cd $(mktemp -d)
+build_qemu \
+    --target-list=x86_64-softmmu,aarch64-softmmu \
+    --enable-debug \
+    --cxx=clang++ --cc=clang --host-cc=clang \
+    --extra-cflags=-Werror --extra-cflags=-fsanitize=undefined \
+    --extra-cflags=-Wno-deprecated-declarations \
+    --extra-cflags=-fno-sanitize=float-divide-by-zero
+make $MAKEFLAGS check