summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/runtime
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-16 17:43:45 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-02-20 16:45:25 +0000
commit95f236f668f641224144a527279e368e98e2e6bf (patch)
tree33b9226229a885ded1029c30a21770f1001a83ab /meta/lib/oeqa/runtime
parent9ebd0a84e70294440445c8d2da382409f2dcadf9 (diff)
downloadpoky-95f236f668f641224144a527279e368e98e2e6bf.tar.gz
core-image-testmaster: Rename to core-image-testcontroller
Rename the image, the test controller class/code/module and the underlying image sentinel file to all match the controller terminology. (From OE-Core rev: f87b32833ac5327c4659ab8c06af34e7bda83f83) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime')
-rw-r--r--meta/lib/oeqa/runtime/cases/ssh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ssh.py b/meta/lib/oeqa/runtime/cases/ssh.py
index 60a5fbbfbf..e31224b3af 100644
--- a/meta/lib/oeqa/runtime/cases/ssh.py
+++ b/meta/lib/oeqa/runtime/cases/ssh.py
@@ -13,7 +13,7 @@ class SSHTest(OERuntimeTestCase):
13 def test_ssh(self): 13 def test_ssh(self):
14 (status, output) = self.target.run('uname -a') 14 (status, output) = self.target.run('uname -a')
15 self.assertEqual(status, 0, msg='SSH Test failed: %s' % output) 15 self.assertEqual(status, 0, msg='SSH Test failed: %s' % output)
16 (status, output) = self.target.run('cat /etc/masterimage') 16 (status, output) = self.target.run('cat /etc/controllerimage')
17 msg = "This isn't the right image - /etc/masterimage " \ 17 msg = "This isn't the right image - /etc/controllerimage " \
18 "shouldn't be here %s" % output 18 "shouldn't be here %s" % output
19 self.assertEqual(status, 1, msg=msg) 19 self.assertEqual(status, 1, msg=msg)