]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
oeqa/selftest: fix test_event_handler for changes in bitbake output
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Tue, 23 Dec 2014 14:39:03 +0000 (14:39 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 25 Dec 2014 08:26:01 +0000 (08:26 +0000)
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
meta/lib/oeqa/selftest/bbtests.py

index 68f97bd8e329bbf6307c218c05f09d88a1a7b1fd..2a85f10821ba1e0c5d4afe12a283d284f705e4c7 100644 (file)
@@ -27,7 +27,7 @@ class BitbakeTests(oeSelfTest):
     def test_event_handler(self):
         self.write_config("INHERIT += \"test_events\"")
         result = bitbake('m4-native')
-        find_build_started = re.search("NOTE: Test for bb\.event\.BuildStarted(\n.*)*NOTE: Preparing runqueue", result.output)
+        find_build_started = re.search("NOTE: Test for bb\.event\.BuildStarted(\n.*)*NOTE: Preparing RunQueue", result.output)
         find_build_completed = re.search("Tasks Summary:.*(\n.*)*NOTE: Test for bb\.event\.BuildCompleted", result.output)
         self.assertTrue(find_build_started, msg = "Match failed in:\n%s"  % result.output)
         self.assertTrue(find_build_completed, msg = "Match failed in:\n%s" % result.output)