From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QaAjX-0008Jr-Ee for garchives@archives.gentoo.org; Fri, 24 Jun 2011 18:03:59 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C2E271C0AE; Fri, 24 Jun 2011 18:03:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 803AC1C096 for ; Fri, 24 Jun 2011 18:03:44 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C2E372AC007 for ; Fri, 24 Jun 2011 18:03:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 23B478003E for ; Fri, 24 Jun 2011 18:03:43 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <757e5bc4a7813a1ae326592d3ec933fc9b6fa698.mgorny@gentoo> Subject: [gentoo-commits] proj/pms-test-suite:master commit in: PMSTestSuite/library/standard/ X-VCS-Repository: proj/pms-test-suite X-VCS-Files: PMSTestSuite/library/standard/workdir_fallback.py X-VCS-Directories: PMSTestSuite/library/standard/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 757e5bc4a7813a1ae326592d3ec933fc9b6fa698 Date: Fri, 24 Jun 2011 18:03:43 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: fc87093b9bd90ad74fea2fb3da2ddbcf commit: 757e5bc4a7813a1ae326592d3ec933fc9b6fa698 Author: Micha=C5=82 G=C3=B3rny gentoo org> AuthorDate: Fri Jun 24 17:59:04 2011 +0000 Commit: Micha=C5=82 G=C3=B3rny gentoo org> CommitDate: Fri Jun 24 17:59:04 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/pms-test-suit= e.git;a=3Dcommit;h=3D757e5bc4 Extend the ${WORKDIR} fallback test to EAPI<4. --- PMSTestSuite/library/standard/workdir_fallback.py | 7 +++++-- 1 files changed, 5 insertions(+), 2 deletions(-) diff --git a/PMSTestSuite/library/standard/workdir_fallback.py b/PMSTestS= uite/library/standard/workdir_fallback.py index 49f42cd..2891d2c 100644 --- a/PMSTestSuite/library/standard/workdir_fallback.py +++ b/PMSTestSuite/library/standard/workdir_fallback.py @@ -7,7 +7,7 @@ from PMSTestSuite.library.standard.dbus_case import DBusE= buildTestCase class WorkdirFallbackTest(DBusEbuildTestCase): """ S=3D${WORKDIR} fallback test. """ =20 - relevant_eapis =3D (4,) + relevant_eapis =3D (2, 4) =20 # In order to disallow S=3D${WORKDIR} fallback, we need to: # 1) have something in ${A} (i.e. fetch something), @@ -27,4 +27,7 @@ class WorkdirFallbackTest(DBusEbuildTestCase): ':' ] } - expect_failure =3D True + + def __init__(self, *args, **kwargs): + DBusEbuildTestCase.__init__(self, *args, **kwargs) + self.expect_failure =3D (self.eapi =3D=3D 4)