From patchwork Wed Jan 11 19:51:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 6162 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 9C57A23F83 for ; Wed, 11 Jan 2012 19:51:15 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id 7B3DEA18419 for ; Wed, 11 Jan 2012 19:51:15 +0000 (UTC) Received: by eaae12 with SMTP id e12so419575eaa.11 for ; Wed, 11 Jan 2012 11:51:15 -0800 (PST) Received: by 10.204.152.20 with SMTP id e20mr85701bkw.117.1326311474996; Wed, 11 Jan 2012 11:51:14 -0800 (PST) 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.205.82.144 with SMTP id ac16cs117626bkc; Wed, 11 Jan 2012 11:51:14 -0800 (PST) Received: by 10.216.136.73 with SMTP id v51mr3555601wei.5.1326311473104; Wed, 11 Jan 2012 11:51:13 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id u68si1389975weq.55.2012.01.11.11.51.12 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 11 Jan 2012 11:51:13 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1Rl4CW-0001zg-NF for ; Wed, 11 Jan 2012 19:51:12 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 89CB6E051F for ; Wed, 11 Jan 2012 19:51:12 +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: 107 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-test/trunk] Rev 107: make build-essential a dep for pwrmgmt and ltp Message-Id: <20120111195112.20527.50625.launchpad@ackee.canonical.com> Date: Wed, 11 Jan 2012 19:51:12 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14640"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 61100faca92be87ad4be792397a3f7d3e694a4d7 ------------------------------------------------------------ revno: 107 committer: Paul Larson branch nick: lava-test timestamp: Wed 2012-01-11 13:49:35 -0600 message: make build-essential a dep for pwrmgmt and ltp modified: lava_test/test_definitions/ltp.py lava_test/test_definitions/pwrmgmt.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 'lava_test/test_definitions/ltp.py' --- lava_test/test_definitions/ltp.py 2011-12-08 03:21:11 +0000 +++ lava_test/test_definitions/ltp.py 2012-01-11 19:49:35 +0000 @@ -25,7 +25,7 @@ VERSION="20100831" URL='http://downloads.sourceforge.net/project/ltp/LTP Source/ltp-%s/ltp-full-%s.bz2' % (VERSION, VERSION) MD5="6982c72429a62f3917c13b2d529ad1ce" -DEPS = ['bzip2', 'flex', 'bison', 'make', 'gcc'] +DEPS = ['bzip2', 'flex', 'bison', 'make', 'build-essential'] SCRIPT = """ tar -xjf ltp-full-20100831.bz2 === modified file 'lava_test/test_definitions/pwrmgmt.py' --- lava_test/test_definitions/pwrmgmt.py 2011-10-20 12:12:15 +0000 +++ lava_test/test_definitions/pwrmgmt.py 2012-01-11 19:49:35 +0000 @@ -24,7 +24,7 @@ INSTALLSTEPS = ['git clone git://git.linaro.org/tools/pm-qa.git', 'cd pm-qa && make clean && make all'] RUNSTEPS = ['cd pm-qa && make check $(OPTIONS)'] -DEPS = ['git-core', 'make', 'linux-libc-dev', 'util-linux'] +DEPS = ['git-core', 'make', 'linux-libc-dev', 'util-linux', 'build-essential'] pwrmgmtinst = TestInstaller(INSTALLSTEPS, deps=DEPS) pwrmgmtrun = TestRunner(RUNSTEPS, default_options=DEFAULT_OPTIONS)