From patchwork Wed Aug 19 04:42:01 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 11722507 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 56BB413A4 for ; Wed, 19 Aug 2020 04:42:25 +0000 (UTC) Received: from web01.groups.io (web01.groups.io [66.175.222.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id C715B2078B for ; Wed, 19 Aug 2020 04:42:24 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=lists.cip-project.org header.i=@lists.cip-project.org header.b="gT0yfL+p" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C715B2078B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=toshiba.co.jp Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=bounce+64572+5136+4520428+8129116@lists.cip-project.org X-Received: by 127.0.0.2 with SMTP id jeL9YY4521763xq7naKXfra4; Tue, 18 Aug 2020 21:42:24 -0700 X-Received: from mo-csw.securemx.jp (mo-csw.securemx.jp [210.130.202.158]) by mx.groups.io with SMTP id smtpd.web10.82966.1597812141269477257 for ; Tue, 18 Aug 2020 21:42:23 -0700 X-Received: by mo-csw.securemx.jp (mx-mo-csw1116) id 07J4gJqq026319; Wed, 19 Aug 2020 13:42:19 +0900 X-Iguazu-Qid: 2wGqzHwiyNDgSFeyn2 X-Iguazu-QSIG: v=2; s=0; t=1597812139; q=2wGqzHwiyNDgSFeyn2; m=60MmG97Hyk2H5g+YFqF5sjK0mb+AoUxLH6SkXP5BWno= X-Received: from imx2.toshiba.co.jp (imx2.toshiba.co.jp [106.186.93.51]) by relay.securemx.jp (mx-mr1113) id 07J4gIMs023770; Wed, 19 Aug 2020 13:42:19 +0900 X-Received: from enc01.localdomain ([106.186.93.100]) by imx2.toshiba.co.jp with ESMTP id 07J4gHK9026341; Wed, 19 Aug 2020 13:42:17 +0900 (JST) X-Received: from hop001.toshiba.co.jp ([133.199.164.63]) by enc01.localdomain with ESMTP id 07J4gHFL008512; Wed, 19 Aug 2020 13:42:17 +0900 From: "Nobuhiro Iwamatsu" To: cip-dev@lists.cip-project.org Cc: jan.kiszka@siemens.com, Nobuhiro Iwamatsu Subject: [cip-dev] [isar-cip-core][PATCH v2 3/3] testing: Add test.yml Date: Wed, 19 Aug 2020 13:42:01 +0900 X-TSB-HOP: ON Message-Id: <20200819044201.1255803-3-nobuhiro1.iwamatsu@toshiba.co.jp> In-Reply-To: <20200819044201.1255803-1-nobuhiro1.iwamatsu@toshiba.co.jp> References: <20200819044201.1255803-1-nobuhiro1.iwamatsu@toshiba.co.jp> MIME-Version: 1.0 Precedence: Bulk List-Unsubscribe: Sender: cip-dev@lists.cip-project.org List-Id: Mailing-List: list cip-dev@lists.cip-project.org; contact cip-dev+owner@lists.cip-project.org Delivered-To: mailing list cip-dev@lists.cip-project.org Reply-To: cip-dev@lists.cip-project.org X-Gm-Message-State: rf9qGIXxWcwjq0zj1K8EF4O8x4520428AA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=lists.cip-project.org; q=dns/txt; s=20140610; t=1597812144; bh=PTnGPwOk5lUzav4ACFyE9VGv3VZ3/oJmXeSduLSMIM0=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=gT0yfL+pb1R4hAcD8PoygdvoFg3uoSX1lVmLQtux4jdLdAlb3wFL321jN51MiLF6/Tk guRnRBgbjbOE9xreYpMmM+vm1gIX8FPBvA9zNnoxwlzxWbLsjYGNpwxCej4e8tHurhyJL hFtfidXQ5cOox5KwcjeCIEd2JavZfZ3uzLY= Add YAML to add the test application to each images. The following test applications will be added. - ltp - rt-tests - stress-ng And this appends '-test' to the generated image filename. Signed-off-by: Nobuhiro Iwamatsu --- kas/opt/test.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 kas/opt/test.yml diff --git a/kas/opt/test.yml b/kas/opt/test.yml new file mode 100644 index 0000000..75b257d --- /dev/null +++ b/kas/opt/test.yml @@ -0,0 +1,20 @@ +# +# Copyright (c) Siemens AG, 2019 +# Copyright (c) Toshiba Corporation, 2020 +# +# Authors: +# Nobuhiro Iwamatsu +# +# SPDX-License-Identifier: MIT +# + +header: + version: 8 + +local_conf_header: + testing: | + IMAGE_INSTALL += "ltp-full" + IMAGE_PREINSTALL += "rt-tests stress-ng" + DESCRIPTION_append = " with test packages" + IMAGE_FULLNAME_append = "-test" +