From patchwork Fri Sep 23 08:34:12 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 4296 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 7247323EF9 for ; Fri, 23 Sep 2011 08:34:14 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 5285DA18C17 for ; Fri, 23 Sep 2011 08:34:14 +0000 (UTC) Received: by fxe23 with SMTP id 23so5018387fxe.11 for ; Fri, 23 Sep 2011 01:34:14 -0700 (PDT) Received: by 10.223.33.19 with SMTP id f19mr4554570fad.122.1316766854062; Fri, 23 Sep 2011 01:34:14 -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.152.18.198 with SMTP id y6cs203225lad; Fri, 23 Sep 2011 01:34:13 -0700 (PDT) Received: by 10.227.8.196 with SMTP id i4mr3365012wbi.41.1316766852980; Fri, 23 Sep 2011 01:34:12 -0700 (PDT) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id ft3si9428162wbb.96.2011.09.23.01.34.12 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 23 Sep 2011 01:34:12 -0700 (PDT) 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 1R71D2-0003aD-Ch for ; Fri, 23 Sep 2011 08:34:12 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 51242E04A9 for ; Fri, 23 Sep 2011 08:34: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: 95 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-test/trunk] Rev 95: fix missing tests Message-Id: <20110923083412.9404.28418.launchpad@ackee.canonical.com> Date: Fri, 23 Sep 2011 08:34: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="14012"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: e1d939e5b419cf8f76de2397a5ce197b885a1aca ------------------------------------------------------------ revno: 95 fixes bug: https://launchpad.net/bugs/857137 committer: Paul Larson branch nick: lava-test timestamp: Fri 2011-09-23 03:10:25 -0500 message: fix missing tests modified: lava_test/core/providers.py lava_test/test_definitions/bootchart.py lava_test/test_definitions/smem.py lava_test/test_definitions/xrestop.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/core/providers.py' --- lava_test/core/providers.py 2011-09-12 09:19:10 +0000 +++ lava_test/core/providers.py 2011-09-23 08:10:25 +0000 @@ -25,15 +25,21 @@ """ _builtin_tests = [ + 'bootchart', + 'firefox', 'glmemperf', 'gmpbench', 'gtkperf', 'ltp', + 'peacekeeper', 'posixtestsuite', 'pwrmgmt', + 'pybench', + 'smem', 'stream', 'tiobench', 'x11perf', + 'xrestop', ] def __init__(self, config): === modified file 'lava_test/test_definitions/bootchart.py' --- lava_test/test_definitions/bootchart.py 2011-09-12 09:19:10 +0000 +++ lava_test/test_definitions/bootchart.py 2011-09-23 08:10:25 +0000 @@ -27,5 +27,5 @@ bootchartrun = TestRunner(RUNSTEPS) bootchartparser = TestParser(PATTERN, appendall={'units':'sec', 'result':'pass'}) -testobj = Test(testname="bootchart", installer=bootchartinst, +testobj = Test(test_id="bootchart", installer=bootchartinst, runner=bootchartrun, parser=bootchartparser) === modified file 'lava_test/test_definitions/smem.py' --- lava_test/test_definitions/smem.py 2011-09-12 09:19:10 +0000 +++ lava_test/test_definitions/smem.py 2011-09-23 08:10:25 +0000 @@ -27,5 +27,5 @@ smemrun = TestRunner(RUNSTEPS) smemparser = TestParser(PATTERN, appendall={'units':'KB', 'result':'pass'}) -testobj = Test(testname="smem", installer=smeminst, +testobj = Test(test_id="smem", installer=smeminst, runner=smemrun, parser=smemparser) === modified file 'lava_test/test_definitions/xrestop.py' --- lava_test/test_definitions/xrestop.py 2011-09-12 09:19:10 +0000 +++ lava_test/test_definitions/xrestop.py 2011-09-23 08:10:25 +0000 @@ -26,5 +26,5 @@ xrestoprun = TestRunner(RUNSTEPS) xrestopparser = TestParser(PATTERN, appendall={'units':'KB', 'result':'pass'}) -testobj = Test(testname="xrestop", installer=xrestopinst, +testobj = Test(test_id="xrestop", installer=xrestopinst, runner=xrestoprun, parser=xrestopparser)