From 36c56b55b9f932ce1c74b2582915771200b7246d Mon Sep 17 00:00:00 2001 From: Milosz Wasilewski Date: Fri, 20 Dec 2013 15:51:06 +0000 Subject: Openembedded SDK tests modifications The tests were modified to match the test cases described in wiki. So the output of hello world is also checked now. Test case with static linking was added. Change-Id: I3370c8368257f3d4c1f0dd5c27dd39700f06ab98 Signed-off-by: Milosz Wasilewski --- openembedded/scripts/sdkhelloc.sh | 17 ++++++++++-- openembedded/scripts/sdkhelloc_static.sh | 47 ++++++++++++++++++++++++++++++++ openembedded/scripts/sdkhellocxx.sh | 17 ++++++++++-- openembedded/sdkhelloc.yaml | 7 ++++- openembedded/sdkhelloc_static.yaml | 30 ++++++++++++++++++++ openembedded/sdkhellocxx.yaml | 7 ++++- 6 files changed, 119 insertions(+), 6 deletions(-) create mode 100755 openembedded/scripts/sdkhelloc_static.sh create mode 100644 openembedded/sdkhelloc_static.yaml diff --git a/openembedded/scripts/sdkhelloc.sh b/openembedded/scripts/sdkhelloc.sh index 163bd6b..f34628b 100755 --- a/openembedded/scripts/sdkhelloc.sh +++ b/openembedded/scripts/sdkhelloc.sh @@ -19,16 +19,29 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: Marcin Juszkiewicz +# Author: Milosz Wasilewski # cd gcc hello.c -o hello > sdkhelloc.log +EXIT=0 if [ 0 -eq $? ] then echo "sdkhelloc: pass" - exit 0 else echo "sdkhelloc: fail" - exit 1 + EXIT=1 fi + +HELLO_OUT=$(./hello) + +if [ "$HELLO_OUT" != 'hello world' ] +then + echo "sdkhellocout: fail" + EXIT=1 +else + echo "sdkhellocout: pass" +fi + +exit $EXIT diff --git a/openembedded/scripts/sdkhelloc_static.sh b/openembedded/scripts/sdkhelloc_static.sh new file mode 100755 index 0000000..1d5935c --- /dev/null +++ b/openembedded/scripts/sdkhelloc_static.sh @@ -0,0 +1,47 @@ +#!/bin/bash +# +# SDK hello.c static test. +# +# Copyright (C) 2013, Linaro Limited. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +# +# Author: Marcin Juszkiewicz +# Author: Milosz Wasilewski +# + +cd +gcc -static hello.c -o hello > sdkhelloc.log +EXIT=0 + +if [ 0 -eq $? ] +then + echo "sdkhelloc_static: pass" +else + echo "sdkhelloc_static: fail" + EXIT=1 +fi + +HELLO_OUT=$(./hello) + +if [ "$HELLO_OUT" != 'hello world' ] +then + echo "sdkhellocout_static: fail" + EXIT=1 +else + echo "sdkhellocout_static: pass" +fi + +exit $EXIT diff --git a/openembedded/scripts/sdkhellocxx.sh b/openembedded/scripts/sdkhellocxx.sh index bc5e195..08b50fd 100755 --- a/openembedded/scripts/sdkhellocxx.sh +++ b/openembedded/scripts/sdkhellocxx.sh @@ -19,16 +19,29 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # Author: Marcin Juszkiewicz +# Author: Milosz Wasilewski # cd g++ hello.cc -o hello > sdkhellocxx.log +EXIT=0 if [ 0 -eq $? ] then echo "sdkhellocxx: pass" - exit 0 else echo "sdkhellocxx: fail" - exit 1 + EXIT=1 fi + +HELLO_OUT=$(./hello) + +if [ "$HELLO_OUT" != 'hello world' ] +then + echo "sdkhellocixxout: fail" + EXIT=1 +else + echo "sdkhellocxxout: pass" +fi + +exit $EXIT diff --git a/openembedded/sdkhelloc.yaml b/openembedded/sdkhelloc.yaml index c195694..3a96fe8 100644 --- a/openembedded/sdkhelloc.yaml +++ b/openembedded/sdkhelloc.yaml @@ -2,12 +2,17 @@ metadata: name: sdkhelloc format: "Lava-Test-Shell Test Definition 1.0" description: "Test for C compiler in OpenEmbedded." + maintainer: + - milosz.wasilewski@linaro.org os: - openembedded scope: - functional devices: - - rtsm_ve-armv8 + - rtsm_foundation-armv8 + - rtsm_fvp_base-aemv8a + - rtsm_fvp_base_cortex-a57x4-a53x4 + - rtsm_fvp_base_cortex-a57x1-a53x1 install: git-repos: diff --git a/openembedded/sdkhelloc_static.yaml b/openembedded/sdkhelloc_static.yaml new file mode 100644 index 0000000..5a3ef9d --- /dev/null +++ b/openembedded/sdkhelloc_static.yaml @@ -0,0 +1,30 @@ +metadata: + name: sdkhelloc-static + format: "Lava-Test-Shell Test Definition 1.0" + description: "Test for C compiler (static linking) in OpenEmbedded." + maintainer: + - milosz.wasilewski@linaro.org + os: + - openembedded + scope: + - functional + devices: + - rtsm_foundation-armv8 + - rtsm_fvp_base-aemv8a + - rtsm_fvp_base_cortex-a57x4-a53x4 + - rtsm_fvp_base_cortex-a57x1-a53x1 + +install: + git-repos: + - git://git.linaro.org/qa/test-definitions.git + +run: + steps: + - "cd test-definitions/openembedded/scripts" + - "./sdkhelloc_static.sh" + +parse: + pattern: "^(?P[a-zA-Z0-9_-]+):\\s(?P\\w+)" + fixupdict: + PASS: pass + FAIL: fail diff --git a/openembedded/sdkhellocxx.yaml b/openembedded/sdkhellocxx.yaml index e86af7b..61c00ce 100644 --- a/openembedded/sdkhellocxx.yaml +++ b/openembedded/sdkhellocxx.yaml @@ -2,12 +2,17 @@ metadata: name: sdkhellocxx format: "Lava-Test-Shell Test Definition 1.0" description: "Test for C++ compiler in OpenEmbedded." + maintainer: + - milosz.wasilewski@linaro.org os: - openembedded scope: - functional devices: - - rtsm_ve-armv8 + - rtsm_foundation-armv8 + - rtsm_fvp_base-aemv8a + - rtsm_fvp_base_cortex-a57x4-a53x4 + - rtsm_fvp_base_cortex-a57x1-a53x1 install: git-repos: -- cgit v1.2.3