From: Fam Zheng Date: Wed, 1 Jun 2016 04:25:23 +0000 (+0800) Subject: docker: Add clang test X-Git-Tag: TizenStudio_2.0_p4.0~6^2~12^2~6^2~241^2~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c8908570dcb93e2675440787bacb3ad81efd6be9;p=sdk%2Femulator%2Fqemu.git docker: Add clang test The (currently partially commented out) configure options are suggested by John Snow . Signed-off-by: Fam Zheng Reviewed-by: Alex Bennée Message-id: 1464755128-32490-11-git-send-email-famz@redhat.com --- diff --git a/tests/docker/test-clang b/tests/docker/test-clang new file mode 100755 index 0000000..6745dbe --- /dev/null +++ b/tests/docker/test-clang @@ -0,0 +1,26 @@ +#!/bin/bash -e +# +# Compile and check with clang. +# +# Copyright (c) 2016 Red Hat Inc. +# +# Authors: +# Fam Zheng +# +# 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 + +OPTS="--enable-debug --cxx=clang++ --cc=clang --host-cc=clang" +# -fsanitize=undefined is broken on Fedora 23, skip it for now +# See also: https://bugzilla.redhat.com/show_bug.cgi?id=1263834 +#OPTS="$OPTS --extra-cflags=-fsanitize=undefined \ + #--extra-cflags=-fno-sanitize=float-divide-by-zero" +DEF_TARGET_LIST="$(echo {x86_64,aarch64}-softmmu)" +TARGET_LIST=${TARGET_LIST:-$DEF_TARGET_LIST} \ +build_qemu $OPTS +make $MAKEFLAGS check