summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Vacek <patrickvacek@gmail.com>2018-06-14 12:25:17 +0200
committerPatrick Vacek <patrickvacek@gmail.com>2018-06-19 12:47:10 +0200
commit343b228fe997a8465a8dad7ef3deb19d4f04fdbb (patch)
treeb3fdc23ffbd34c118d85d3cf22cc93a61f7914be
parent629210011380ec1cd2144c9657bb01d87c1abd74 (diff)
downloadmeta-updater-343b228fe997a8465a8dad7ef3deb19d4f04fdbb.tar.gz
updater.py: Fix longstanding typo.
-rw-r--r--lib/oeqa/selftest/cases/updater.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/oeqa/selftest/cases/updater.py b/lib/oeqa/selftest/cases/updater.py
index 44e0647..54b8aa2 100644
--- a/lib/oeqa/selftest/cases/updater.py
+++ b/lib/oeqa/selftest/cases/updater.py
@@ -141,7 +141,7 @@ class AutoProvTests(OESelftestTestCase):
141 if re.search(layer, result.output) is None: 141 if re.search(layer, result.output) is None:
142 # Assume the directory layout for finding other layers. We could also 142 # Assume the directory layout for finding other layers. We could also
143 # make assumptions by using 'show-layers', but either way, if the 143 # make assumptions by using 'show-layers', but either way, if the
144 # layers we need aren't where we expect them, we are out of like. 144 # layers we need aren't where we expect them, we are out of luck.
145 path = os.path.abspath(os.path.dirname(__file__)) 145 path = os.path.abspath(os.path.dirname(__file__))
146 metadir = path + "/../../../../../" 146 metadir = path + "/../../../../../"
147 self.meta_qemu = metadir + layer 147 self.meta_qemu = metadir + layer
@@ -204,7 +204,7 @@ class RpiTests(OESelftestTestCase):
204 result = runCmd('bitbake-layers show-layers') 204 result = runCmd('bitbake-layers show-layers')
205 # Assume the directory layout for finding other layers. We could also 205 # Assume the directory layout for finding other layers. We could also
206 # make assumptions by using 'show-layers', but either way, if the 206 # make assumptions by using 'show-layers', but either way, if the
207 # layers we need aren't where we expect them, we are out of like. 207 # layers we need aren't where we expect them, we are out of luck.
208 path = os.path.abspath(os.path.dirname(__file__)) 208 path = os.path.abspath(os.path.dirname(__file__))
209 metadir = path + "/../../../../../" 209 metadir = path + "/../../../../../"
210 if re.search(layer_python, result.output) is None: 210 if re.search(layer_python, result.output) is None:
@@ -277,7 +277,7 @@ class GrubTests(OESelftestTestCase):
277 result = runCmd('bitbake-layers show-layers') 277 result = runCmd('bitbake-layers show-layers')
278 # Assume the directory layout for finding other layers. We could also 278 # Assume the directory layout for finding other layers. We could also
279 # make assumptions by using 'show-layers', but either way, if the 279 # make assumptions by using 'show-layers', but either way, if the
280 # layers we need aren't where we expect them, we are out of like. 280 # layers we need aren't where we expect them, we are out of luck.
281 path = os.path.abspath(os.path.dirname(__file__)) 281 path = os.path.abspath(os.path.dirname(__file__))
282 metadir = path + "/../../../../../" 282 metadir = path + "/../../../../../"
283 if re.search(layer_intel, result.output) is None: 283 if re.search(layer_intel, result.output) is None:
@@ -339,7 +339,7 @@ class ImplProvTests(OESelftestTestCase):
339 if re.search(layer, result.output) is None: 339 if re.search(layer, result.output) is None:
340 # Assume the directory layout for finding other layers. We could also 340 # Assume the directory layout for finding other layers. We could also
341 # make assumptions by using 'show-layers', but either way, if the 341 # make assumptions by using 'show-layers', but either way, if the
342 # layers we need aren't where we expect them, we are out of like. 342 # layers we need aren't where we expect them, we are out of luck.
343 path = os.path.abspath(os.path.dirname(__file__)) 343 path = os.path.abspath(os.path.dirname(__file__))
344 metadir = path + "/../../../../../" 344 metadir = path + "/../../../../../"
345 self.meta_qemu = metadir + layer 345 self.meta_qemu = metadir + layer
@@ -409,7 +409,7 @@ class HsmTests(OESelftestTestCase):
409 if re.search(layer, result.output) is None: 409 if re.search(layer, result.output) is None:
410 # Assume the directory layout for finding other layers. We could also 410 # Assume the directory layout for finding other layers. We could also
411 # make assumptions by using 'show-layers', but either way, if the 411 # make assumptions by using 'show-layers', but either way, if the
412 # layers we need aren't where we expect them, we are out of like. 412 # layers we need aren't where we expect them, we are out of luck.
413 path = os.path.abspath(os.path.dirname(__file__)) 413 path = os.path.abspath(os.path.dirname(__file__))
414 metadir = path + "/../../../../../" 414 metadir = path + "/../../../../../"
415 self.meta_qemu = metadir + layer 415 self.meta_qemu = metadir + layer
@@ -527,7 +527,7 @@ class SecondaryTests(OESelftestTestCase):
527 if re.search(layer, result.output) is None: 527 if re.search(layer, result.output) is None:
528 # Assume the directory layout for finding other layers. We could also 528 # Assume the directory layout for finding other layers. We could also
529 # make assumptions by using 'show-layers', but either way, if the 529 # make assumptions by using 'show-layers', but either way, if the
530 # layers we need aren't where we expect them, we are out of like. 530 # layers we need aren't where we expect them, we are out of luck.
531 path = os.path.abspath(os.path.dirname(__file__)) 531 path = os.path.abspath(os.path.dirname(__file__))
532 metadir = path + "/../../../../../" 532 metadir = path + "/../../../../../"
533 self.meta_qemu = metadir + layer 533 self.meta_qemu = metadir + layer
@@ -572,7 +572,7 @@ class PrimaryTests(OESelftestTestCase):
572 if re.search(layer, result.output) is None: 572 if re.search(layer, result.output) is None:
573 # Assume the directory layout for finding other layers. We could also 573 # Assume the directory layout for finding other layers. We could also
574 # make assumptions by using 'show-layers', but either way, if the 574 # make assumptions by using 'show-layers', but either way, if the
575 # layers we need aren't where we expect them, we are out of like. 575 # layers we need aren't where we expect them, we are out of luck.
576 path = os.path.abspath(os.path.dirname(__file__)) 576 path = os.path.abspath(os.path.dirname(__file__))
577 metadir = path + "/../../../../../" 577 metadir = path + "/../../../../../"
578 self.meta_qemu = metadir + layer 578 self.meta_qemu = metadir + layer