mirror of
https://git.yoctoproject.org/poky
synced 2026-05-31 00:39:46 +00:00
bitbake: toaster: Added new feature to import eventlogs from command line into toaster using replay functionality
Added a new button on the base template to access a new template. Added a model register the information on the builds and generate access links Added a form to include the option to load specific files Added jquery and ajax functions to block screen and redirect to build page when import eventlogs is trigger Added a new button on landing page linked to import build page, and set min-height of buttons in landing page for uniformity Removed test assertion to check command line build in content, because new button contains text Updated toaster_eventreplay to use library Fix test in test_layerdetails_page Rebased from master This feature uses the value from the variable BB_DEFAULT_EVENTLOG to read the files created by bitbake Exclude listing of files that don't contain the allvariables definitions used to replay builds This part of the feature should be revisited. Over a long period of time, the BB_DEFAULT_EVENTLOG will exponentially increase the size of the log file and cause bottlenecks when importing. (Bitbake rev: ab96cafe03d8bab33c1de09602cc62bd6974f157) Signed-off-by: Marlon Rodriguez Garcia <marlon.rodriguez-garcia@savoirfairelinux.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4bb222e0d7
commit
df5c8d6471
@@ -219,5 +219,3 @@ class TestLandingPage(SeleniumTestCase):
|
||||
content = self.get_page_source()
|
||||
self.assertTrue(self.PROJECT_NAME in content,
|
||||
'should show builds for project %s' % self.PROJECT_NAME)
|
||||
self.assertFalse(self.CLI_BUILDS_PROJECT_NAME in content,
|
||||
'should not show builds for cli project')
|
||||
|
||||
@@ -108,7 +108,7 @@ class TestLayerDetailsPage(SeleniumTestCase):
|
||||
|
||||
self.wait_until_visible("#save-changes-for-switch", poll=3)
|
||||
btn_save_chg_for_switch = self.find("#save-changes-for-switch")
|
||||
btn_save_chg_for_switch.click()
|
||||
self.driver.execute_script("arguments[0].click();", btn_save_chg_for_switch)
|
||||
self.wait_until_visible("#edit-layer-source")
|
||||
|
||||
# Refresh the page to see if the new values are returned
|
||||
|
||||
Reference in New Issue
Block a user