summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/devtool.py
diff options
context:
space:
mode:
authorEd Bartosh <bartosh@gmail.com>2016-02-13 11:02:11 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-15 16:28:44 +0000
commitd083fec6d1211183f76b49025b10bc8faf5df010 (patch)
tree7de4ea5bea1bc67b1b87030635d2d35cd4f84610 /meta/lib/oeqa/selftest/devtool.py
parentc26a9c3afd248a92db86fff09e97ef3ae662e430 (diff)
downloadpoky-d083fec6d1211183f76b49025b10bc8faf5df010.tar.gz
oe-selftest: remove unused parameter
Removed unused parameter 'test' from runqemu function. (From OE-Core rev: c688b3bcbb57099fa72a9728bc708b109802f7fc) (From OE-Core rev: a7af1eb28fab515180c0fa01a003ac7b2ce0cff4) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/devtool.py')
-rw-r--r--meta/lib/oeqa/selftest/devtool.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/devtool.py b/meta/lib/oeqa/selftest/devtool.py
index e5a2134132..036146425b 100644
--- a/meta/lib/oeqa/selftest/devtool.py
+++ b/meta/lib/oeqa/selftest/devtool.py
@@ -1025,7 +1025,7 @@ class DevtoolTests(DevtoolBase):
1025 result = runCmd('devtool deploy-target -n %s root@localhost' % testrecipe) 1025 result = runCmd('devtool deploy-target -n %s root@localhost' % testrecipe)
1026 self.assertIn(' %s' % testfile, result.output) 1026 self.assertIn(' %s' % testfile, result.output)
1027 # Boot the image 1027 # Boot the image
1028 with runqemu(testimage, self) as qemu: 1028 with runqemu(testimage) as qemu:
1029 # Now really test deploy-target 1029 # Now really test deploy-target
1030 result = runCmd('devtool deploy-target -c %s root@%s' % (testrecipe, qemu.ip)) 1030 result = runCmd('devtool deploy-target -c %s root@%s' % (testrecipe, qemu.ip))
1031 # Run a test command to see if it was installed properly 1031 # Run a test command to see if it was installed properly