]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/runtime/multilib: run the arch tests on connmand not connman-applet
authorRoss Burton <ross.burton@intel.com>
Wed, 28 Oct 2015 15:58:03 +0000 (15:58 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 16 Nov 2015 11:28:31 +0000 (11:28 +0000)
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/lib/oeqa/runtime/multilib.py

index e1bcc428fcafd1db363778c9f24447c9d342f266..fe11a21903e92847521e93f37081a095deace27a 100644 (file)
@@ -40,9 +40,9 @@ class MultilibTest(oeRuntimeTest):
     @testcase('279')
     @skipUnlessPassed('test_check_multilib_libc')
     def test_file_connman(self):
-        self.assertTrue(oeRuntimeTest.hasPackage('lib32-connman-gnome'), msg="This test assumes lib32-connman-gnome is installed")
+        self.assertTrue(oeRuntimeTest.hasPackage('lib32-connman'), msg="This test assumes lib32-connman is installed")
 
-        (status, output) = self.target.run("readelf -h /usr/bin/connman-applet")
-        self.assertEqual(status, 0, "Failed to readelf /usr/bin/connman-applet")
+        (status, output) = self.target.run("readelf -h /usr/sbin/connmand")
+        self.assertEqual(status, 0, "Failed to readelf /usr/sbin/connmand")
         theclass = self.parse(output)
-        self.assertEqual(theclass, "ELF32", msg="connman-applet isn't ELF32 (is %s)" % theclass)
+        self.assertEqual(theclass, "ELF32", msg="connmand isn't ELF32 (is %s)" % theclass)