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:39:30 +0000 |
commit | ecbe1359da4df770515d44b81ba2edd284f51051 (patch) | |
tree | 8a93b96c345c3810ce6e709995525fa055227889 | |
parent | 2d1071edb1233eb836059e8205bae19582068a88 (diff) | |
download | poky-ecbe1359da4df770515d44b81ba2edd284f51051.tar.gz |
oeqa/runtime/multilib: run the arch tests on connmand not connman-applet
(From OE-Core rev: 29945c12d43a1cc40b22caf04fe57f25b946e84f)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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): | |||
40 | @testcase('279') | 40 | @testcase('279') |
41 | @skipUnlessPassed('test_check_multilib_libc') | 41 | @skipUnlessPassed('test_check_multilib_libc') |
42 | def test_file_connman(self): | 42 | def test_file_connman(self): |
43 | self.assertTrue(oeRuntimeTest.hasPackage('lib32-connman-gnome'), msg="This test assumes lib32-connman-gnome is installed") | 43 | self.assertTrue(oeRuntimeTest.hasPackage('lib32-connman'), msg="This test assumes lib32-connman is installed") |
44 | 44 | ||
45 | (status, output) = self.target.run("readelf -h /usr/bin/connman-applet") | 45 | (status, output) = self.target.run("readelf -h /usr/sbin/connmand") |
46 | self.assertEqual(status, 0, "Failed to readelf /usr/bin/connman-applet") | 46 | self.assertEqual(status, 0, "Failed to readelf /usr/sbin/connmand") |
47 | theclass = self.parse(output) | 47 | theclass = self.parse(output) |
48 | self.assertEqual(theclass, "ELF32", msg="connman-applet isn't ELF32 (is %s)" % theclass) | 48 | self.assertEqual(theclass, "ELF32", msg="connmand isn't ELF32 (is %s)" % theclass) |