Lines Matching refs:output

18         for l in res.output.split('\n'):
45 … = re.search(r"NOTE: Test for bb\.event\.BuildStarted(\n.*)*NOTE: Executing.*Tasks", result.output)
46 …eted = re.search(r"Tasks Summary:.*(\n.*)*NOTE: Test for bb\.event\.BuildCompleted", result.output)
47 self.assertTrue(find_build_started, msg = "Match failed in:\n%s" % result.output)
48 self.assertTrue(find_build_completed, msg = "Match failed in:\n%s" % result.output)
49 self.assertNotIn('Test for bb.event.InvalidEvent', result.output)
55 find_setscene = re.search("selftest-hello-native.*do_.*_setscene", result.output)
56 …etscene\" message found during bitbake selftest-hello-native. bitbake output: %s" % result.output )
60 …f'" in result.output, msg = "Though asdf recipe doesn't exist, bitbake didn't output any err. mess…
64 self.assertIn("ERROR: Nothing PROVIDES 'asdf'", result.output)
68 … find_warnings = re.search("Summary: There w.{2,3}? [1-9][0-9]* WARNING messages*", result.output)
69 … find_errors = re.search("Summary: There w.{2,3}? [1-9][0-9]* ERROR messages*", result.output)
70 …ind_warnings, msg="Did not find the mumber of warnings at the end of the build:\n" + result.output)
71 …ue(find_errors, msg="Did not find the mumber of errors at the end of the build:\n" + result.output)
81 for l in result.output.split('\n'):
84 …R:"), msg = "Incorrectly formed patch application didn't fail. bitbake output: %s" % result.output)
111 …self.assertIn('task do_package_write_rpm:', ret.output, 'Task do_package_write_rpm did not re-exec…
123 self.assertIn(task, result.output, msg="Couldn't find %s task.")
130 … result.output, msg = "No task dependency \"task-depends.dot\" file was generated for the given ta…
152 …t.status, 1, msg="Command succeded when it should have failed. bitbake output: %s" % result.output)
153 …('Unable to get checksum for man-db SRC_URI entry invalid: file could not be found', result.output)
167 self.assertEqual(result.status, 0, msg = "Couldn't fetch aspell. %s" % result.output)
175 self.assertIn('localconf', result.output)
179 … self.assertEqual(0, result.status, "bitbake dry run didn't run as expected. %s" % result.output)
183 … self.assertEqual(0, result.status, "errors encountered when parsing recipes. %s" % result.output)
187 find = re.search(r"wget *:([0-9a-zA-Z\.\-]+)", result.output)
188 …elf.assertTrue(find, "No version returned for searched recipe. bitbake output: %s" % result.output)
193 …, "bitbake didn't error and should have when a specified prefile didn't exist: %s" % result.output)
199 self.assertIn('prefile', result.output)
202 self.assertIn('localconf', result.output)
207 … "bitbake didn't error and should have when a specified postfile didn't exist: %s" % result.output)
214 self.assertIn('postfile', result.output)
218 …l(0, result.status, msg = "\"checkuri\" task was not executed. bitbake output: %s" % result.output)
229 errorpos = result.output.find('ERROR: Function failed: do_fail_task')
230 …= re.search("NOTE: recipe xcursor-transparent-theme-(.*?): task do_unpack: Started", result.output)
231 …continuepos = result.output.find('NOTE: recipe xcursor-transparent-theme-%s: task do_unpack: Start…
232 …errorpos,continuepos, msg = "bitbake didn't pass do_fail_task. bitbake output: %s" % result.output)
239 …Equal(result.status, 0, "Bitbake failed, exit code %s, output %s" % (result.status, result.output))
255 tasks = re.findall(r'task\s+(do_\S+):', ret.output)
268 tasks = re.findall(r'task\s+(do_\S+):', ret.output)
276 tasks = re.findall(r'task\s+(do_\S+):', ret.output)
285 tasks = re.findall(r'task\s+(do_\S+):', ret.output)
324 … fatal = re.search("fatal: not a git repository (or any of the parent directories)", result.output)
339 …self.assertFalse("bitbake_patching_started" in result.output, msg = "Repository has been reinitial…
366 … bb.fetch2.get_srcrev()", result.output), msg = "Recipe without PV set to SRCPV should have failed…
377 … result.output), msg = "mkdirhier with unexpanded variable should have failed: %s" % result.output)