diff options
author | Ross Burton <ross.burton@intel.com> | 2015-10-28 15:58:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-11-16 11:28:31 +0000 |
commit | 29945c12d43a1cc40b22caf04fe57f25b946e84f (patch) | |
tree | 9e4b2ca295bd2a6121b59b57c359205f720ca656 /meta | |
parent | 05132fd236835db71d3e763b4d6ce01fcf14741a (diff) | |
download | openembedded-core-29945c12d43a1cc40b22caf04fe57f25b946e84f.tar.gz openembedded-core-29945c12d43a1cc40b22caf04fe57f25b946e84f.tar.bz2 openembedded-core-29945c12d43a1cc40b22caf04fe57f25b946e84f.zip |
oeqa/runtime/multilib: run the arch tests on connmand not connman-applet
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/lib/oeqa/runtime/multilib.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/lib/oeqa/runtime/multilib.py b/meta/lib/oeqa/runtime/multilib.py index e1bcc428fc..fe11a21903 100644 --- a/meta/lib/oeqa/runtime/multilib.py +++ b/meta/lib/oeqa/runtime/multilib.py @@ -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) |