From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dan.rpsys.net (5751f4a1.skybroadband.com [87.81.244.161]) by mail.openembedded.org (Postfix) with ESMTP id EF49560939 for ; Wed, 28 Sep 2016 09:14:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id u8S9EFbT007615 for ; Wed, 28 Sep 2016 10:14:15 +0100 Received: from dan.rpsys.net ([127.0.0.1]) by localhost (dan.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Syl2IfE5bdLS for ; Wed, 28 Sep 2016 10:14:15 +0100 (BST) Received: from hex ([192.168.3.34]) (authenticated bits=0) by dan.rpsys.net (8.14.4/8.14.4/Debian-4.1ubuntu1) with ESMTP id u8S9EEBw007608 (version=TLSv1/SSLv3 cipher=AES128-GCM-SHA256 bits=128 verify=NOT) for ; Wed, 28 Sep 2016 10:14:15 +0100 Message-ID: <1475054054.30475.65.camel@linuxfoundation.org> From: Richard Purdie To: openembedded-core Date: Wed, 28 Sep 2016 10:14:14 +0100 X-Mailer: Evolution 3.18.5.2-0ubuntu3 Mime-Version: 1.0 Subject: [PATCH] oeqa/sstatetests: Ensure we cover deb packaging backend for sstate test X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Sep 2016 09:14:15 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8bit Currently we weren't testing the deb backaned for sstate correctness and there was a bug that had crept in. Ensure we cover all package backends with the test regardless of what the distro/conf sets. Signed-off-by: Richard Purdie diff --git a/meta/lib/oeqa/selftest/sstatetests.py b/meta/lib/oeqa/selftest/sstatetests.py index 07212ac..a353f67 100644 --- a/meta/lib/oeqa/selftest/sstatetests.py +++ b/meta/lib/oeqa/selftest/sstatetests.py @@ -237,6 +237,7 @@ TMPDIR = "${TOPDIR}/tmp-sstatesamehash"  BUILD_ARCH = "x86_64"  BUILD_OS = "linux"  SDKMACHINE = "x86_64" +PACKAGE_CLASSES = "package_rpm package_ipk package_deb"  """)          self.track_for_cleanup(topdir + "/tmp-sstatesamehash")          bitbake("core-image-sato -S none") @@ -246,6 +247,7 @@ TMPDIR = "${TOPDIR}/tmp-sstatesamehash2"  BUILD_ARCH = "i686"  BUILD_OS = "linux"  SDKMACHINE = "i686" +PACKAGE_CLASSES = "package_rpm package_ipk package_deb"  """)          self.track_for_cleanup(topdir + "/tmp-sstatesamehash2")          bitbake("core-image-sato -S none")