summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-04-20 08:10:42 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-04-20 08:12:17 +0100
commit91aa78a8cdd9f2a46cb8077e348a48ce374b5244 (patch)
tree3a8a5cfa9166fcddd437a43ae244252867cba5d4 /meta
parent2d93f1c3515d0338395942b2666ec821b8f171eb (diff)
downloadpoky-91aa78a8cdd9f2a46cb8077e348a48ce374b5244.tar.gz
oeqa/selftest/runqemu: qemu nfs testing not ready for deployment
This test shouldn't have merged yet since we don't run portmap/rpcbind on the autobuilder infrastructure and the test therefore cannot succeed. We need to document this, set it up, then enable the test. The test itself is fine and good to have so its left in the code but disabled for now. (From OE-Core rev: 9640af873d490c5d22b70e32d918c2db37371d21) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/lib/oeqa/selftest/cases/runqemu.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runqemu.py b/meta/lib/oeqa/selftest/cases/runqemu.py
index f3ff015cba..5ebdd57a41 100644
--- a/meta/lib/oeqa/selftest/cases/runqemu.py
+++ b/meta/lib/oeqa/selftest/cases/runqemu.py
@@ -185,7 +185,9 @@ class QemuTest(OESelftestTestCase):
185 qemu_shutdown_succeeded = self._start_qemu_shutdown_check_if_shutdown_succeeded(qemu, shutdown_timeout) 185 qemu_shutdown_succeeded = self._start_qemu_shutdown_check_if_shutdown_succeeded(qemu, shutdown_timeout)
186 self.assertTrue(qemu_shutdown_succeeded, 'Failed: %s does not shutdown within timeout(%s)' % (self.machine, shutdown_timeout)) 186 self.assertTrue(qemu_shutdown_succeeded, 'Failed: %s does not shutdown within timeout(%s)' % (self.machine, shutdown_timeout))
187 187
188 def test_qemu_can_boot_nfs_and_shutdown(self): 188 # Need to have portmap/rpcbind running to allow this test to work and
189 # current autobuilder setup does not have this.
190 def disabled_test_qemu_can_boot_nfs_and_shutdown(self):
189 self.assertExists(self.qemuboot_conf) 191 self.assertExists(self.qemuboot_conf)
190 bitbake('meta-ide-support') 192 bitbake('meta-ide-support')
191 rootfs_tar = "%s-%s.tar.bz2" % (self.recipe, self.machine) 193 rootfs_tar = "%s-%s.tar.bz2" % (self.recipe, self.machine)