From patchwork Mon Jan 30 18:45:17 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Larson X-Patchwork-Id: 6449 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 21E6B23E0C for ; Mon, 30 Jan 2012 18:45:19 +0000 (UTC) Received: from mail-bk0-f52.google.com (mail-bk0-f52.google.com [209.85.214.52]) by fiordland.canonical.com (Postfix) with ESMTP id ED208A181D5 for ; Mon, 30 Jan 2012 18:45:18 +0000 (UTC) Received: by bkar19 with SMTP id r19so4633241bka.11 for ; Mon, 30 Jan 2012 10:45:18 -0800 (PST) Received: by 10.204.200.197 with SMTP id ex5mr8934686bkb.128.1327949118650; Mon, 30 Jan 2012 10:45:18 -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.204.130.220 with SMTP id u28cs161176bks; Mon, 30 Jan 2012 10:45:18 -0800 (PST) Received: by 10.181.12.106 with SMTP id ep10mr29953298wid.8.1327949117924; Mon, 30 Jan 2012 10:45:17 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id a9si9829096wie.4.2012.01.30.10.45.17 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 30 Jan 2012 10:45:17 -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 1RrwE9-0008F6-J3 for ; Mon, 30 Jan 2012 18:45:17 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 801BEE03B1 for ; Mon, 30 Jan 2012 18:45:17 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-dispatcher X-Launchpad-Branch: ~linaro-validation/lava-dispatcher/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 214 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-dispatcher/trunk] Rev 214: Fix broken rc check Message-Id: <20120130184517.29429.89943.launchpad@ackee.canonical.com> Date: Mon, 30 Jan 2012 18:45:17 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14727"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: b5ddf4ea37b97be1afb3dd17f7dc0d31e9a27a57 ------------------------------------------------------------ revno: 214 committer: Paul Larson branch nick: lava-dispatcher timestamp: Mon 2012-01-30 12:42:45 -0600 message: Fix broken rc check modified: lava_dispatcher/actions/lava-test.py --- lp:lava-dispatcher https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk You are subscribed to branch lp:lava-dispatcher. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-dispatcher/trunk/+edit-subscription === modified file 'lava_dispatcher/actions/lava-test.py' --- lava_dispatcher/actions/lava-test.py 2012-01-30 16:57:54 +0000 +++ lava_dispatcher/actions/lava-test.py 2012-01-30 18:42:45 +0000 @@ -43,8 +43,7 @@ session.run('pip install -e ' + lava_test_url) #Test if lava-test installed - try: - rc = session.run('lava-test help', timeout=60) + rc = session.run('lava-test help', timeout=60) if rc != 0: raise CriticalError("lava-test deployment failed")