From patchwork Mon Sep 16 12:04:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: kim.hansen@prevas.dk X-Patchwork-Id: 275198 X-Patchwork-Delegate: esben@haabendal.dk Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hugin.dotsrc.org (hugin.dotsrc.org [IPv6:2001:878:346::102]) by ozlabs.org (Postfix) with ESMTP id 85A682C00FB for ; Mon, 16 Sep 2013 22:05:06 +1000 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id 121743F84A for ; Mon, 16 Sep 2013 14:05:01 +0200 (CEST) X-Original-To: dev@oe-lite.org Delivered-To: dev@oe-lite.org Received: from mail02.prevas.se (mail02.prevas.se [62.95.78.10]) by hugin.dotsrc.org (Postfix) with ESMTPS id 159583F84A for ; Mon, 16 Sep 2013 14:04:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=1739; q=dns/txt; s=ironport2; t=1379333099; x=1410869099; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=WkdxzQKGmSQJtz6CyZ/7fGKZH+RFx7cgVB01fn9Qnlw=; b=cgvY1byahlSAuaD8qx6fkGHe5lt3QxaYB1q3mbGuMJZm7kNc6fR3WwUW ILB4nNXMh4hLv/T9t0Tm89uI4WjZCd8XzX3o78KHRbk+IyZuEo/p6t+Yg a37mhRX1F6Rn2Ausc3sDGZVazumAJ7uBr+8XaMAHPc7892NPi8gAiYcsA Q=; X-IronPort-AV: E=Sophos;i="4.90,914,1371074400"; d="scan'208";a="3588245" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport2.prevas.se with ESMTP/TLS/AES128-SHA; 16 Sep 2013 14:04:58 +0200 Received: from arh146.prevas.dk (172.16.11.4) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server (TLS) id 14.2.347.0; Mon, 16 Sep 2013 14:04:58 +0200 Received: by arh146.prevas.dk (Postfix, from userid 1000) id 444D22741530; Mon, 16 Sep 2013 14:04:21 +0200 (CEST) From: To: Subject: [PATCH 0/1] Add recipes for unit testing do_split in package.oeclass Date: Mon, 16 Sep 2013 14:04:17 +0200 Message-ID: X-Mailer: git-send-email 1.8.4 MIME-Version: 1.0 X-Originating-IP: [172.16.11.4] X-BeenThere: dev@oe-lite.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: OE-lite development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dev-bounces@oe-lite.org Errors-To: dev-bounces@oe-lite.org From: Kim Højgaard-Hansen Add recipes for unit testing do_split in package.oeclass dosplittest-unshipped is expected to fail. Currently dosplittest-dup-pkg will also fail until a bug in the metadata generation is fixed. The following changes since commit 856e6642815515403897f79ef8879c138a716260: crosstool-ng: Fix mingw32 gdbserver dependencies (2013-09-13 20:29:41 +0200) are available in the git repository at: git://gitorious.org/oe-lite/kihos-core dosplittests http://gitorious.org/oe-lite/kihos-core/commits/dosplittests Kim Højgaard-Hansen (1): add tests for do_split recipes/test/dosplittest-create-dir.oe | 7 +++++++ recipes/test/dosplittest-dang-syml.oe | 9 +++++++++ recipes/test/dosplittest-dir.oe | 7 +++++++ recipes/test/dosplittest-dup-pkg.oe | 3 +++ recipes/test/dosplittest-file-in-mult-pkg.oe | 8 ++++++++ recipes/test/dosplittest-glob.oe | 8 ++++++++ recipes/test/dosplittest-no-packages.oe | 3 +++ recipes/test/dosplittest-really-dang-sym.oe | 8 ++++++++ recipes/test/dosplittest-unshipped.oe | 5 +++++ 9 files changed, 58 insertions(+) create mode 100644 recipes/test/dosplittest-create-dir.oe create mode 100644 recipes/test/dosplittest-dang-syml.oe create mode 100644 recipes/test/dosplittest-dir.oe create mode 100644 recipes/test/dosplittest-dup-pkg.oe create mode 100644 recipes/test/dosplittest-file-in-mult-pkg.oe create mode 100644 recipes/test/dosplittest-glob.oe create mode 100644 recipes/test/dosplittest-no-packages.oe create mode 100644 recipes/test/dosplittest-really-dang-sym.oe create mode 100644 recipes/test/dosplittest-unshipped.oe