From patchwork Thu Jul 14 06:08:18 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 2685 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 6F69223F3F for ; Thu, 14 Jul 2011 06:08:24 +0000 (UTC) Received: from mail-qw0-f52.google.com (mail-qw0-f52.google.com [209.85.216.52]) by fiordland.canonical.com (Postfix) with ESMTP id 1CF66A18242 for ; Thu, 14 Jul 2011 06:08:24 +0000 (UTC) Received: by qwb8 with SMTP id 8so4567333qwb.11 for ; Wed, 13 Jul 2011 23:08:23 -0700 (PDT) Received: by 10.224.198.7 with SMTP id em7mr1725655qab.112.1310623703524; Wed, 13 Jul 2011 23:08:23 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.217.78 with SMTP id hl14cs3480qcb; Wed, 13 Jul 2011 23:08:22 -0700 (PDT) Received: by 10.216.60.17 with SMTP id t17mr1739698wec.29.1310623701422; Wed, 13 Jul 2011 23:08:21 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id o53si31613644weq.28.2011.07.13.23.08.19; Wed, 13 Jul 2011 23:08:21 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QhF5u-0006vy-LY for ; Thu, 14 Jul 2011 06:08:18 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 93A7C2E8134 for ; Thu, 14 Jul 2011 06:08:18 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-test X-Launchpad-Branch: ~linaro-validation/lava-test/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 75 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-test/trunk] Rev 75: Add bzip2 dependency to gmpbench and posixtestsuite Message-Id: <20110714060818.28405.12158.launchpad@loganberry.canonical.com> Date: Thu, 14 Jul 2011 06:08:18 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13405"; Instance="initZopeless config overlay" X-Launchpad-Hash: e7336916129458340880f3ed149f5a4d62e6e055 ------------------------------------------------------------ revno: 75 committer: Paul Larson branch nick: lava-test timestamp: Wed 2011-07-13 21:46:00 -0500 message: Add bzip2 dependency to gmpbench and posixtestsuite modified: abrek/test_definitions/gmpbench.py abrek/test_definitions/posixtestsuite.py --- lp:lava-test https://code.launchpad.net/~linaro-validation/lava-test/trunk You are subscribed to branch lp:lava-test. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-test/trunk/+edit-subscription === modified file 'abrek/test_definitions/gmpbench.py' --- abrek/test_definitions/gmpbench.py 2011-04-13 20:39:16 +0000 +++ abrek/test_definitions/gmpbench.py 2011-07-14 02:46:00 +0000 @@ -26,7 +26,7 @@ VERSION='0.2' URL="ftp://ftp.gmplib.org/pub/misc/gmpbench-%s.tar.bz2" %(VERSION) URL_gexpr="http://www.gmplib.org/gexpr.c" -DEPS = ['gcc', 'libgmp3-dev', 'wget'] +DEPS = ['gcc', 'libgmp3-dev', 'wget', 'bzip2'] INSTALLSTEPS = ['tar -xjf gmpbench-0.2.tar.bz2', 'wget -c %s' %(URL_gexpr), === modified file 'abrek/test_definitions/posixtestsuite.py' --- abrek/test_definitions/posixtestsuite.py 2011-04-13 20:39:16 +0000 +++ abrek/test_definitions/posixtestsuite.py 2011-07-14 02:46:00 +0000 @@ -30,7 +30,7 @@ "ltp-full-%s.bz2" % (VERSION, VERSION) MD5="6982c72429a62f3917c13b2d529ad1ce" INSTALLSTEPS = ['tar -xjf ltp-full-20100831.bz2'] -DEPS = ['gcc'] +DEPS = ['gcc', 'bzip2'] RUNSTEPS = ['cd ltp-full-20100831/testcases/open_posix_testsuite/ && make'] PATTERN = "((?P\A(\w+[/]+)+\w+[-]*\w*[-]*\w*) .*? (?P\w+))"