Closed Bug 589167 Opened 14 years ago Closed 14 years ago

Run ts only once per changeset (remove ts either from the cold or the dirty test suite)

Categories

(Testing :: Talos, defect)

x86
Windows 7
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: sdwilsh, Assigned: anodelman)

Details

Attachments

(1 file)

It seems, at least on the places branch, and maybe mozilla-central, that I get more than one run of "Ts" for non-windows platforms. At least, the graph server has more than one results stored for it.
Alice, any idea what's going on here? Catlee noticed that both the "cold" and "dirty" builders report some of the same tests. This "dirty" log reports: TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":64,"branch":1,"machine":566}]'>ts_cold_generated_min: 7987.16</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":61,"branch":1,"machine":566}]'>ts_cold_generated_min_shutdown: 414.89</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":66,"branch":1,"machine":566}]'>ts_cold_generated_max: 8258.37</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":63,"branch":1,"machine":566}]'>ts_cold_generated_max_shutdown: 558.42</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":16,"branch":1,"machine":566}]'>ts: 475.05</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":36,"branch":1,"machine":566}]'>ts_shutdown: 400.11</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":65,"branch":1,"machine":566}]'>ts_cold_generated_med: 8289.05</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":62,"branch":1,"machine":566}]'>ts_cold_generated_med_shutdown: 520.32</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":54,"branch":1,"machine":566}]'>ts_places_generated_max: 485.58</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":51,"branch":1,"machine":566}]'>ts_places_generated_max_shutdown: 347.42</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":53,"branch":1,"machine":566}]'>ts_places_generated_med: 481.79</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":50,"branch":1,"machine":566}]'>ts_places_generated_med_shutdown: 352.68</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":52,"branch":1,"machine":566}]'>ts_places_generated_min: 481.89</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":49,"branch":1,"machine":566}]'>ts_places_generated_min_shutdown: 359.58</a><br> And this "cold" log reports: TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":16,"branch":1,"machine":687}]'>ts: 470.32</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":36,"branch":1,"machine":687}]'>ts_shutdown: 405.74</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":55,"branch":1,"machine":687}]'>ts_cold: 7406.21</a><br> TinderboxPrint:<a href='http://graphs.mozilla.org/graph.html#tests=[{"test":56,"branch":1,"machine":687}]'>ts_cold_shutdown: 446.84</a><br>
Looks like you get Ts twice (once as part of the cold set, once as part of the dirty set). I think that I included it in each set to make a quick baseline before running the more exotic ts tests. We can easily remove it from one or the other.
(In reply to comment #2) > Looks like you get Ts twice (once as part of the cold set, once as part of the > dirty set). I think that I included it in each set to make a quick baseline > before running the more exotic ts tests. We can easily remove it from one or > the other. Does Ts in the 'dirty' suite run with all the dirty profiles loaded?
Ts in the dirty suite is still just Ts. If has a different name (like ts_generated_min) if is using a dirty profile.
Tweaking summary, and pushing over to Testing after discussions above.
Assignee: nobody → anodelman
Component: Release Engineering → Talos
Product: mozilla.org → Testing
QA Contact: release → talos
Summary: Multiple Talos runs per build → On tinderbox, Ts "cold" and Ts "dirty" suites both appear as "Ts" which is confusing
Version: other → unspecified
I don't know what the bug is here - they are both running just straight ts before starting the more complicated versions. There are not two ts tests that mean different things, if that is what is being implied.
(In reply to comment #6) > I don't know what the bug is here - they are both running just straight ts > before starting the more complicated versions. There are not two ts tests that > mean different things, if that is what is being implied. I suppose the bug is that more work is being done than needed, right?
Summary: On tinderbox, Ts "cold" and Ts "dirty" suites both appear as "Ts" which is confusing → Run ts only once per changeset (remove ts either from the cold or the dirty test suite)
This patch removes ts from the cold + dirty suites. Ts will only run as part of the standard chrome tests.
Attachment #469623 - Flags: review?(jhammel)
Attachment #469623 - Flags: review?(jhammel) → review+
Blocks: 591055
Comment on attachment 469623 [details] [diff] [review] run ts once per-changeset >diff -r 7bd7b20145ed mozilla-tests/config.py >--- a/mozilla-tests/config.py Thu Aug 26 16:17:07 2010 -0400 >+++ b/mozilla-tests/config.py Thu Aug 26 14:42:53 2010 -0700 >@@ -17,11 +17,11 @@ > TALOS_ADDON_OPTS = {'addonTester' : True, 'plugins': 'zips/plugins.zip', 'pageset': 'zips/pagesets.zip'} > > SUITES = { >- 'chrome': GRAPH_CONFIG + ['--activeTests', 'tdhtml:twinopen:tsspider:tgfx'], >+ 'chrome': GRAPH_CONFIG + ['--activeTests', 'ts:tdhtml:twinopen:tsspider:tgfx'], Did you mean to remove it from here too?
Comment on attachment 469623 [details] [diff] [review] run ts once per-changeset Checked in as changeset: 2933:bfbffec2105e, and masters reconfigured.
No longer blocks: 591055
This is done.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: