From patchwork Tue Nov 12 12:55:31 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: 290627 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 4A39E2C00CA for ; Tue, 12 Nov 2013 23:56:57 +1100 (EST) Received: from hugin.dotsrc.org (localhost [127.0.0.1]) by hugin.dotsrc.org (Postfix) with ESMTP id EFDA53F8E0 for ; Tue, 12 Nov 2013 13:56:53 +0100 (CET) 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 8D6913F8E0 for ; Tue, 12 Nov 2013 13:56:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=prevas.dk; i=@prevas.dk; l=1701; q=dns/txt; s=ironport2; t=1384261012; x=1415797012; h=from:to:subject:date:message-id:mime-version: content-transfer-encoding; bh=oKUb4s5tbUYBeqlJlXbyvXVQ5E18jD11rKC4XnG1kkY=; b=Y+7zHbconRl13cA0Ysn5az86lMQrQOwIVFKgFsEHXT3WYrrVp02p82tM 91diyM8aVOKg3gwl9GLQPmFZ0K6GOrkCHbtqslNCmbwa3n6DHFqUluDsG H+IMu5iS+KIQHxQG0JX01nBpyCVueJQm3Ni0B1uCvUR9Jv9h8wOo81rDt M=; X-IronPort-AV: E=Sophos;i="4.93,684,1378850400"; d="scan'208";a="27473" Received: from vmprevas3.prevas.se (HELO smtp.prevas.se) ([172.16.8.103]) by ironport2.prevas.se with ESMTP/TLS/AES128-SHA; 12 Nov 2013 13:56:52 +0100 Received: from arh146.prevas.dk (172.16.11.12) by smtp.prevas.se (172.16.8.105) with Microsoft SMTP Server (TLS) id 14.2.347.0; Tue, 12 Nov 2013 13:56:51 +0100 Received: by arh146.prevas.dk (Postfix, from userid 1000) id 4904E274034D; Tue, 12 Nov 2013 13:55:41 +0100 (CET) From: To: Subject: [PATCH 0/2] Add unit tests for do_split task Date: Tue, 12 Nov 2013 13:55:31 +0100 Message-ID: X-Mailer: git-send-email 1.8.4.2 MIME-Version: 1.0 X-Originating-IP: [172.16.11.12] 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 special test recipes to test do_split task as preparation for do_split refactoring *** The following changes since commit 45ff8cf89cae1e02886517660052422ea3e87621: class/kernel: For all kernel recipes to be machine specific (2013-10-31 13:16:01 +0100) are available in the git repository at: git://gitorious.org/oe-lite/kimrhhs-oe-lite-core do-split-tests http://gitorious.org/oe-lite/kimrhhs-oe-lite-core/commits/do-split-tests Kim Højgaard-Hansen (2): task.py: allow expected failures add tests for do_split lib/oelite/task.py | 29 +++++++++++++++++++++------- recipes/test/dosplittest-create-dir.oe | 7 +++++++ recipes/test/dosplittest-dang-syml.oe | 9 +++++++++ recipes/test/dosplittest-dir.oe | 7 +++++++ 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 | 6 ++++++ 9 files changed, 78 insertions(+), 7 deletions(-) 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-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