Closed
Bug 593384
Opened 14 years ago
Closed 14 years ago
Do test cleanup after test run as well
Categories
(Release Engineering :: General, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: catlee, Assigned: salbiz)
References
Details
(Whiteboard: [optimization])
Attachments
(1 file, 1 obsolete file)
320 bytes,
patch
|
catlee
:
review+
armenzg
:
review+
catlee
:
checked-in+
|
Details | Diff | Splinter Review |
shaver pointed out in bug 586418 that removing files after we're done a test run will probably be much faster than doing the cleanup ahead of time, since the OS cache will have most of the test files in cache.
it's still a good idea to do cleanup before the test run, just in case.
Comment 1•14 years ago
|
||
In the unittest case, you can do the rm in the background while you send the results, and then wait for it to finish, if you want to squeeze the time down even more. But I suspect that time-to-cleanup will drop to "not a huge deal" once it's at the tail anyway.
Assignee | ||
Comment 2•14 years ago
|
||
patch for adding the cleanup step after the end of the run. Still performs a cleanup before as well.
Attachment #471917 -
Flags: review?(catlee)
Comment 3•14 years ago
|
||
Would it make sense to add "addCleanupSteps" inside of "addTearDownSteps" since it is part of the tearing down of the test run?
Assignee | ||
Comment 4•14 years ago
|
||
I agree that making the cleanup part of the teardown makes sense. I've also removed the second cleanup from the the talos runs, since when testing it on staging, I observed little-to-no difference in the amount of time taken to cleanup before/after (usually just a few seconds anyway), so adding it afterwards would probably just be adding a second or so of filesystem churn.
Attachment #471917 -
Attachment is obsolete: true
Attachment #471917 -
Flags: review?(catlee)
Assignee | ||
Updated•14 years ago
|
Attachment #472616 -
Flags: review?(catlee)
Attachment #472616 -
Flags: review?(armenzg)
Updated•14 years ago
|
Attachment #472616 -
Flags: review?(armenzg) → review+
Reporter | ||
Updated•14 years ago
|
Attachment #472616 -
Flags: review?(catlee) → review+
Reporter | ||
Updated•14 years ago
|
Blocks: releng-downtime
Reporter | ||
Comment 5•14 years ago
|
||
Comment on attachment 472616 [details] [diff] [review]
addCleanupStep inside addTeardownSteps, remove from TalosFactory
changeset: 953:6f1dbbcf0aee
Attachment #472616 -
Flags: checked-in+
Reporter | ||
Updated•14 years ago
|
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Updated•11 years ago
|
Product: mozilla.org → Release Engineering
You need to log in
before you can comment on or make changes to this bug.
Description
•