Closed
Bug 629069
Opened 14 years ago
Closed 14 years ago
Create endurance tests shared-module and initial test snippet
Categories
(Mozilla QA Graveyard :: Mozmill Tests, defect)
Mozilla QA Graveyard
Mozmill Tests
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: davehunt, Assigned: davehunt)
References
Details
Attachments
(3 files, 7 obsolete files)
10.27 KB,
patch
|
whimboo
:
review+
|
Details | Diff | Splinter Review |
2.43 KB,
patch
|
u279076
:
review+
whimboo
:
review+
|
Details | Diff | Splinter Review |
2.43 KB,
patch
|
u279076
:
review+
whimboo
:
review+
|
Details | Diff | Splinter Review |
We need to create a new shared-module for the Endurance Tests project. This will use the performance shared-module to gather metrics on the current resources whilst a test snippet is run a specified number of times. The number of iterations for a test snippet will be provided as a command line parameter to an associated command line wrapper.
Assignee | ||
Comment 1•14 years ago
|
||
This patch includes a shared-module for endurance tests, and an initial test snippet for demonstration purposes. The test snippet simple opens and closes the add-ons manager. There were also necessary changes for the performance shared-module to prevent it from storing the results in memory.
Attachment #507190 -
Flags: review?(hskupin)
Attachment #507190 -
Flags: review?(anthony.s.hughes)
Assignee | ||
Updated•14 years ago
|
Attachment #507190 -
Flags: feedback?(gmealer)
Comment on attachment 507190 [details] [diff] [review]
Shared-module and initial test snippet v1
Looks fine to me.
Attachment #507190 -
Flags: review?(anthony.s.hughes) → review+
Comment on attachment 507190 [details] [diff] [review]
Shared-module and initial test snippet v1
Looks fine. Now that you're exposing a "checkpoint" object from the PerfTracer, the object interface should probably be documented somewhere since it's public.
Attachment #507190 -
Flags: feedback?(gmealer) → feedback+
Comment 4•14 years ago
|
||
Comment on attachment 507190 [details] [diff] [review]
Shared-module and initial test snippet v1
>+var Endurance = require("../../shared-modules/endurance");
>+var Addons = require("../../shared-modules/addons");
nit: please sort alphabetical.
>+var setupModule = function(module) {
function setupModule() please
>+var teardownModule = function(module) {
Same here.
>+var testOpenAndCloseAddonManager = function() {
... and here.
>+ for(var i = 0; i < persisted.iterations; i++) {
>+ enduranceManager.startIteration(i);
>+
>+ addonsManager.open();
>+ enduranceManager.addCheckpoint("Add-ons Manager open");
>+ addonsManager.close();
>+ enduranceManager.addCheckpoint("Add-ons Manager closed");
>+
>+ enduranceManager.endIteration();
>+ }
Most of the code will be repeated in other tests. I believe the endurance module should completely take care of the iterations, and you simply pass in a callback to the function which contains the tests.
>+/**
>+ * Constructor
>+ */
nit: please add the parameter and @contstructor entry
>+function enduranceManager(controller) {
For new classes we should immediately start to use a capital first letter.
>+ startIteration : function endurance_startIteration(iteration) {
As said in the test, it should be enough to have one single function exposed which runs all iterations.
>+ this._iteration = iteration;
>+ this._controller.sleep(persisted.delay);
Please assign both persisted values to class properties in the constructor.
>+++ b/shared-modules/performance.js
>+ getCheckpoint : function PerfTracer_getCheckpoint(aLabel) {
I don't see why this change is necessary. You should also call addCheckpoint for startIteration and endIteration. Simply add a getter to the performance class which retrieves the _log array. You will always be able to access start/end via [0] or [length-1].
Dependent on my proposals for the automation script other changes would be necessary.
Attachment #507190 -
Flags: review?(hskupin) → review-
Assignee | ||
Updated•14 years ago
|
Assignee: nobody → dave.hunt
Status: NEW → ASSIGNED
Assignee | ||
Comment 5•14 years ago
|
||
(In reply to comment #4)
> Comment on attachment 507190 [details] [diff] [review]
> Shared-module and initial test snippet v1
>
> >+var Endurance = require("../../shared-modules/endurance");
> >+var Addons = require("../../shared-modules/addons");
>
> nit: please sort alphabetical.
Done.
> >+var setupModule = function(module) {
>
> function setupModule() please
Done.
> >+var teardownModule = function(module) {
>
> Same here.
Done.
> >+var testOpenAndCloseAddonManager = function() {
>
> ... and here.
Done.
> >+ for(var i = 0; i < persisted.iterations; i++) {
> >+ enduranceManager.startIteration(i);
> >+
> >+ addonsManager.open();
> >+ enduranceManager.addCheckpoint("Add-ons Manager open");
> >+ addonsManager.close();
> >+ enduranceManager.addCheckpoint("Add-ons Manager closed");
> >+
> >+ enduranceManager.endIteration();
> >+ }
>
> Most of the code will be repeated in other tests. I believe the endurance
> module should completely take care of the iterations, and you simply pass in a
> callback to the function which contains the tests.
Sounds ideal. Do you have any example code that I can look at, as I honestly wouldn't know where to start with this...
> >+/**
> >+ * Constructor
> >+ */
>
> nit: please add the parameter and @contstructor entry
Done.
> >+function enduranceManager(controller) {
>
> For new classes we should immediately start to use a capital first letter.
Done.
> >+ this._iteration = iteration;
> >+ this._controller.sleep(persisted.delay);
>
> Please assign both persisted values to class properties in the constructor.
Done for results and delay, but I'm not sure it currently makes sense to persist the number of iterations, as the shared-module doesn't use this. The value in the code above is the current iteration.
> >+++ b/shared-modules/performance.js
> >+ getCheckpoint : function PerfTracer_getCheckpoint(aLabel) {
>
> I don't see why this change is necessary. You should also call addCheckpoint
> for startIteration and endIteration. Simply add a getter to the performance
> class which retrieves the _log array. You will always be able to access
> start/end via [0] or [length-1].
I did this originally, but wanted to keep start/end distinct from a test's 'checkpoints'. For now I have reverted back to your suggested implementation.
> Dependent on my proposals for the automation script other changes would be
> necessary.
Done.
Attachment #507190 -
Attachment is obsolete: true
Attachment #508376 -
Flags: review?(hskupin)
Assignee | ||
Comment 6•14 years ago
|
||
Geo: Thanks for your point on updating the PerfTracer documentation. Where can I find this?
Henrik: Is there a way I can store the endurance results to retain a relationship with the tests? Looking at the report content, I would either imagine including the index of the test in the endurance object, or somehow adding the endurance results beneath the test results. Having this association would allow me to build a chart for an entire testrun, as well as charts for individual tests.
Comment 7•14 years ago
|
||
(In reply to comment #5)
> > Most of the code will be repeated in other tests. I believe the endurance
> > module should completely take care of the iterations, and you simply pass in a
> > callback to the function which contains the tests.
>
> Sounds ideal. Do you have any example code that I can look at, as I honestly
> wouldn't know where to start with this...
Still needed after our 1-1 today?
> > >+ this._iteration = iteration;
> > >+ this._controller.sleep(persisted.delay);
> >
> > Please assign both persisted values to class properties in the constructor.
>
> Done for results and delay, but I'm not sure it currently makes sense to
> persist the number of iterations, as the shared-module doesn't use this. The
> value in the code above is the current iteration.
As discussed today, it makes sense once the iteration is in the endurance class itself.
> > I don't see why this change is necessary. You should also call addCheckpoint
> > for startIteration and endIteration. Simply add a getter to the performance
> > class which retrieves the _log array. You will always be able to access
> > start/end via [0] or [length-1].
>
> I did this originally, but wanted to keep start/end distinct from a test's
> 'checkpoints'. For now I have reverted back to your suggested implementation.
Having it separated will make code more complicated which is written to analyzes samples, i.e. you can't easily get the diffs for start/end with the other timestamps.
Comment 8•14 years ago
|
||
Comment on attachment 508376 [details] [diff] [review]
Shared-module and initial test snippet v1.1
As talked, I will remove the request for now.
Attachment #508376 -
Flags: review?(hskupin)
Assignee | ||
Comment 9•14 years ago
|
||
(In reply to comment #7)
> (In reply to comment #5)
> > > Most of the code will be repeated in other tests. I believe the endurance
> > > module should completely take care of the iterations, and you simply pass in a
> > > callback to the function which contains the tests.
Done.
> > > >+ this._iteration = iteration;
> > > >+ this._controller.sleep(persisted.delay);
> > >
> > > Please assign both persisted values to class properties in the constructor.
> >
Done.
> > > I don't see why this change is necessary. You should also call addCheckpoint
> > > for startIteration and endIteration. Simply add a getter to the performance
> > > class which retrieves the _log array. You will always be able to access
> > > start/end via [0] or [length-1].
> >
> > I did this originally, but wanted to keep start/end distinct from a test's
> > 'checkpoints'. For now I have reverted back to your suggested implementation.
>
> Having it separated will make code more complicated which is written to
> analyzes samples, i.e. you can't easily get the diffs for start/end with the
> other timestamps.
Done.
I have also added an argument for the test name as I was unable to get this programmatically. This is for the dashboard report so we can compare resources per test. Finally, I have added a short delay after each checkpoint to simulate user think-time. I'd like to get some feedback on this change.
Attachment #508376 -
Attachment is obsolete: true
Attachment #509462 -
Flags: review?(hskupin)
Assignee | ||
Updated•14 years ago
|
Attachment #509462 -
Flags: review?(hskupin) → review?(anthony.s.hughes)
Comment 10•14 years ago
|
||
Comment on attachment 509462 [details] [diff] [review]
Shared-module and initial test snippets v1.2
>+ run : function endurance_run(name, callback) {
>+ this._testResults = {"name" : name, "iterations" : [ ]};
>+ for (var i=0; i < this._iterations; i++) {
This is a nit, but please put a space between i, =, and 0.
r+ otherwise.
Attachment #509462 -
Flags: review?(anthony.s.hughes) → review+
Assignee | ||
Comment 11•14 years ago
|
||
(In reply to comment #10)
> Comment on attachment 509462 [details] [diff] [review]
> Shared-module and initial test snippets v1.2
>
> >+ run : function endurance_run(name, callback) {
> >+ this._testResults = {"name" : name, "iterations" : [ ]};
> >+ for (var i=0; i < this._iterations; i++) {
>
> This is a nit, but please put a space between i, =, and 0.
Done.
> r+ otherwise.
Thanks.
Attachment #509462 -
Attachment is obsolete: true
Attachment #509584 -
Flags: review?(hskupin)
Assignee | ||
Comment 12•14 years ago
|
||
Updated to get the test method name and filename from Mozmill.
Attachment #509584 -
Attachment is obsolete: true
Attachment #511205 -
Flags: review?(hskupin)
Attachment #509584 -
Flags: review?(hskupin)
Comment 13•14 years ago
|
||
Comment on attachment 511205 [details] [diff] [review]
Shared-module and initial test snippets v1.3
>+++ b/firefox/enduranceTests/testEnterAndLeavePrivateBrowsingModeWithMultipleTabsOpen.js
Wow, we should shorten file names. This one no-one can overview. It would probably be a good idea to use sub folders.
>+function testEnterAndLeavePrivateBrowsingModeWithMutlipleTabsOpen() {
Test module and function should have different names. That will also reduce complexity.
>+ enduranceManager.run(function () {
>+ pb.start();
>+ enduranceManager.addCheckpoint("Entered private browsing mode");
>+ pb.stop();
>+ enduranceManager.addCheckpoint("Left private browsing mode");
>+ });
I wonder if we shouldn't magically use persisted in the endurance class but better pass in the values are parameters for the constructor. The benefit of it would be that someone could run the test more easily without the automation script, simply by running Mozmill. What do you think?
>+var pbStartHandler = function(controller) {
>+ // Check to not ask anymore for entering Private Browsing mode
>+ var checkbox = new elementslib.ID(controller.window.document, 'checkbox');
>+ controller.waitThenClick(checkbox);
>+
>+ var okButton = new elementslib.Lookup(controller.window.document,
>+ '/id("commonDialog")' +
>+ '/anon({"anonid":"buttons"})' +
>+ '/{"dlgtype":"accept"}');
>+ controller.click(okButton);
>+}
You don't need the dialog. I would say disable the showPrompt property.
>+function setupModule() {
>+ controller = mozmill.getBrowserController();
>+ enduranceManager = new Endurance.EnduranceManager(controller);
>+ addonsManager = new Addons.addonsManager(controller);
>+ tabBrowser = new Tabs.tabBrowser(controller);
>+ tabBrowser.closeAllTabs();
>+}
Please add two empty lines after controller and tabBrowser to separate the different actions.
>+ * @param {MozMillController} controller Mozmill controller of FF-window.
Please use the description we have in other modules. I don't think it will always be the browser window.
>+ run : function endurance_run(callback) {
>+ this._testResults = {"testMethod" : frame.events.currentTest.__name__,
>+ "testFile" : frame.events.currentModule.__file__,
>+ "iterations" : [ ]};
For better readability please move the testMethod assignment also to its own line. Otherwise good to see that this is working.
>+ for (var i = 0; i < this._iterations; i++) {
>+ this._controller.sleep(this._delay);
>+ this._iterationResults = {"checkpoints" : new Array()};
You could use the perftracer's log property to collect the checkpoints. You would only have to reset it for each iteration.
>+ this.addCheckpoint("Start iteration");
Then this._perfTracer.addCheckpoint(label) sounds more obvious to me.
>+ this._testResults.iterations.push(this._iterationResults);
And finally you can construct the result object you want to push and use this._perfTracer._log (also I'm not sure why it has an underscore because it should be public accessible).
>+ }
>+ this._results.push(this._testResults);
Also please always add some blank lines between the different blocks. This loop is hard to overlook.
>+ addCheckpoint : function endurance_addCheckpoint(label) {
>+ this._iterationResults.checkpoints.push(this._perfTracer.getCheckpoint(label));
>+ this._controller.sleep(200);
I believe we don't need that method anymore, now we have the internal method which handles the iterations. Also why was the 200ms delay necessary?
Attachment #511205 -
Flags: review?(hskupin) → review-
Assignee | ||
Comment 14•14 years ago
|
||
(In reply to comment #13)
> Comment on attachment 511205 [details] [diff] [review]
> Shared-module and initial test snippets v1.3
>
> >+++ b/firefox/enduranceTests/testEnterAndLeavePrivateBrowsingModeWithMultipleTabsOpen.js
>
> Wow, we should shorten file names. This one no-one can overview. It would
> probably be a good idea to use sub folders.
Revised folder structure and file names. Please let me know if you had something else in mind. I do have a tendency to use long test names, as I personally think it's better to be descriptive than brief.
> >+function testEnterAndLeavePrivateBrowsingModeWithMutlipleTabsOpen() {
>
> Test module and function should have different names. That will also reduce
> complexity.
Also revised. Feedback encouraged.
> >+ enduranceManager.run(function () {
> >+ pb.start();
> >+ enduranceManager.addCheckpoint("Entered private browsing mode");
> >+ pb.stop();
> >+ enduranceManager.addCheckpoint("Left private browsing mode");
> >+ });
>
> I wonder if we shouldn't magically use persisted in the endurance class but
> better pass in the values are parameters for the constructor. The benefit of it
> would be that someone could run the test more easily without the automation
> script, simply by running Mozmill. What do you think?
I had expected that in the future we may want to override the automation script parameters within the test, whereas your suggestion sounds like the automation script take precedence. This is probably something worth discussing. For the time being I have set suitable defaults (0 delay, 1 iteration) if not running via the automation script.
> >+var pbStartHandler = function(controller) {
> >+ // Check to not ask anymore for entering Private Browsing mode
> >+ var checkbox = new elementslib.ID(controller.window.document, 'checkbox');
> >+ controller.waitThenClick(checkbox);
> >+
> >+ var okButton = new elementslib.Lookup(controller.window.document,
> >+ '/id("commonDialog")' +
> >+ '/anon({"anonid":"buttons"})' +
> >+ '/{"dlgtype":"accept"}');
> >+ controller.click(okButton);
> >+}
>
> You don't need the dialog. I would say disable the showPrompt property.
Agreed. Done.
> >+function setupModule() {
> >+ controller = mozmill.getBrowserController();
> >+ enduranceManager = new Endurance.EnduranceManager(controller);
> >+ addonsManager = new Addons.addonsManager(controller);
> >+ tabBrowser = new Tabs.tabBrowser(controller);
> >+ tabBrowser.closeAllTabs();
> >+}
>
> Please add two empty lines after controller and tabBrowser to separate the
> different actions.
Done.
> >+ * @param {MozMillController} controller Mozmill controller of FF-window.
>
> Please use the description we have in other modules. I don't think it will
> always be the browser window.
Done.
> >+ run : function endurance_run(callback) {
> >+ this._testResults = {"testMethod" : frame.events.currentTest.__name__,
> >+ "testFile" : frame.events.currentModule.__file__,
> >+ "iterations" : [ ]};
>
> For better readability please move the testMethod assignment also to its own
> line. Otherwise good to see that this is working.
Done.
> >+ for (var i = 0; i < this._iterations; i++) {
> >+ this._controller.sleep(this._delay);
> >+ this._iterationResults = {"checkpoints" : new Array()};
>
> You could use the perftracer's log property to collect the checkpoints. You
> would only have to reset it for each iteration.
Done. The reason this wasn't done initially was to prevent storing too much in memory, however I see that this is should be just as safe.
> >+ this.addCheckpoint("Start iteration");
>
> Then this._perfTracer.addCheckpoint(label) sounds more obvious to me.
Done.
> >+ this._testResults.iterations.push(this._iterationResults);
>
> And finally you can construct the result object you want to push and use
> this._perfTracer._log (also I'm not sure why it has an underscore because it
> should be public accessible).
Done.
> >+ }
> >+ this._results.push(this._testResults);
>
> Also please always add some blank lines between the different blocks. This loop
> is hard to overlook.
Done.
> >+ addCheckpoint : function endurance_addCheckpoint(label) {
> >+ this._iterationResults.checkpoints.push(this._perfTracer.getCheckpoint(label));
> >+ this._controller.sleep(200);
>
> I believe we don't need that method anymore, now we have the internal method
> which handles the iterations. Also why was the 200ms delay necessary?
This is still needed as it exposes the addCheckpoint method to the actual endurance test. The 200ms delay is currently there because we identified that running the automation without any delays actually causes memory usage to steadily increase, as this is unrealistic we added a parameterised delay between iterations and short delay after each checkpoint to more close simulate 'think time'. I'm not against removing this, but we should probably discuss.
Attachment #511205 -
Attachment is obsolete: true
Attachment #511726 -
Flags: review?(hskupin)
Comment 15•14 years ago
|
||
(In reply to comment #14)
> > >+ for (var i = 0; i < this._iterations; i++) {
> > >+ this._controller.sleep(this._delay);
> > >+ this._iterationResults = {"checkpoints" : new Array()};
> >
> > You could use the perftracer's log property to collect the checkpoints. You
> > would only have to reset it for each iteration.
>
> Done. The reason this wasn't done initially was to prevent storing too much in
> memory, however I see that this is should be just as safe.
Well, before you also pushed entries to an array which resisted in memory. The assignment to the persisted object happens after each iteration.
> This is still needed as it exposes the addCheckpoint method to the actual
> endurance test. The 200ms delay is currently there because we identified that
> running the automation without any delays actually causes memory usage to
> steadily increase, as this is unrealistic we added a parameterised delay
> between iterations and short delay after each checkpoint to more close simulate
> 'think time'. I'm not against removing this, but we should probably discuss.
I would better like it if it would be a parameter for the command line or if we could even merge it with the already specified delay value via the command line. Not sure if we really need two separate delay values. More to come in my review now.
Comment 16•14 years ago
|
||
Comment on attachment 511726 [details] [diff] [review]
Shared-module and initial test snippets v1.4
>+ // Make sure we are not in PB mode and do not show a prompt
>+ pb.enabled = false;
>+ pb.showPrompt = false;
Would be better to have that in setupModule instead of the test itself.
>+ LOCAL_TEST_PAGES.forEach(function(url) {
nit: Place a space between function and the opening bracket.
>+ enduranceManager.run(function () {
>+ pb.start();
>+ enduranceManager.addCheckpoint("Entered private browsing mode");
>+ pb.stop();
>+ enduranceManager.addCheckpoint("Left private browsing mode");
>+ });
Out of interest I would also be interested in if we have variances for starting/stopping the pb mode. Think about adding two more checkpoints?
>+EnduranceManager.prototype = {
>+
>+ /**
>+ * Run endurance test
>+ *
>+ * @param {function} callback
>+ * Callback function to call
>+ */
>+ run : function endurance_run(callback) {
Your indentation in the module has been mixed up. Please move back by 2 spaces.
>+ this._testResults = {
>+ "testMethod" : frame.events.currentTest.__name__,
>+ "testFile" : frame.events.currentModule.__file__,
>+ "iterations" : [ ]};
nit: for this block it would be helpful to have the closing bracket in the new line, like what we have for for loops. Oh and you can remove the quotes around the element names. Those are not necessary.
>+ for (var i = 0; i < this._iterations; i++) {
>+ this._controller.sleep(this._delay);
So we already have a sleep here?
>+ this._perfTracer.addCheckpoint("End iteration");
>+ this._iterationResults = {"checkpoints" : this._perfTracer._log};
>+ this._perfTracer.clearLog();
>
>+ this._testResults.iterations.push(this._iterationResults);
You can directly push the checkpoints. No need to store it in a separate variable first. Just call clearLog after the push command.
>+ addCheckpoint : function endurance_addCheckpoint(label) {
>+ this._perfTracer.addCheckpoint(label);
>+ this._controller.sleep(200);
>+ },
So you have said we need a timeout during each iteration. I can see that above in the for loop. Right now I don't understand this 200ms. If we really want to do an endurance tests to measure the timing we will break our results. Isn't this._delay enough?
Otherwise it looks pretty solid. I think one more round and then we can get this beast landed!
Attachment #511726 -
Flags: review?(hskupin) → review-
Assignee | ||
Comment 17•14 years ago
|
||
(In reply to comment #16)
> Comment on attachment 511726 [details] [diff] [review]
> Shared-module and initial test snippets v1.4
>
> >+ // Make sure we are not in PB mode and do not show a prompt
> >+ pb.enabled = false;
> >+ pb.showPrompt = false;
>
> Would be better to have that in setupModule instead of the test itself.
Agreed. Done.
> >+ LOCAL_TEST_PAGES.forEach(function(url) {
>
> nit: Place a space between function and the opening bracket.
Done.
> >+ enduranceManager.run(function () {
> >+ pb.start();
> >+ enduranceManager.addCheckpoint("Entered private browsing mode");
> >+ pb.stop();
> >+ enduranceManager.addCheckpoint("Left private browsing mode");
> >+ });
>
> Out of interest I would also be interested in if we have variances for
> starting/stopping the pb mode. Think about adding two more checkpoints?
As discussed on IRC this is worth noting for future endurance tests.
> >+EnduranceManager.prototype = {
> >+
> >+ /**
> >+ * Run endurance test
> >+ *
> >+ * @param {function} callback
> >+ * Callback function to call
> >+ */
> >+ run : function endurance_run(callback) {
>
> Your indentation in the module has been mixed up. Please move back by 2 spaces.
Done.
> >+ this._testResults = {
> >+ "testMethod" : frame.events.currentTest.__name__,
> >+ "testFile" : frame.events.currentModule.__file__,
> >+ "iterations" : [ ]};
>
> nit: for this block it would be helpful to have the closing bracket in the new
> line, like what we have for for loops. Oh and you can remove the quotes around
> the element names. Those are not necessary.
Done.
> >+ this._perfTracer.addCheckpoint("End iteration");
> >+ this._iterationResults = {"checkpoints" : this._perfTracer._log};
> >+ this._perfTracer.clearLog();
> >
> >+ this._testResults.iterations.push(this._iterationResults);
>
> You can directly push the checkpoints. No need to store it in a separate
> variable first. Just call clearLog after the push command.
Done.
> >+ addCheckpoint : function endurance_addCheckpoint(label) {
> >+ this._perfTracer.addCheckpoint(label);
> >+ this._controller.sleep(200);
> >+ },
>
> So you have said we need a timeout during each iteration. I can see that above
> in the for loop. Right now I don't understand this 200ms. If we really want to
> do an endurance tests to measure the timing we will break our results. Isn't
> this._delay enough?
Removed this delay for now as it's causing some confusion. It was basically an additional small delay to closer simulate a user. It can be readdressed in a future iteration if needed.
Attachment #511726 -
Attachment is obsolete: true
Attachment #512294 -
Flags: review?(hskupin)
Assignee | ||
Comment 18•14 years ago
|
||
Attachment #512294 -
Attachment is obsolete: true
Attachment #512304 -
Flags: review?(hskupin)
Attachment #512294 -
Flags: review?(hskupin)
Comment 19•14 years ago
|
||
Comment on attachment 512304 [details] [diff] [review]
Shared-module and initial test snippets v1.5.1
Looks good. Lets get it landed!
Attachment #512304 -
Flags: review?(hskupin) → review+
Comment 20•14 years ago
|
||
Landed on default only:
http://hg.mozilla.org/qa/mozmill-tests/rev/25f5f895535d
There are no requirements to get it landed on older branches. We could think of backports later if needed.
Dave, can you only create a dummy test for older branches? Similar as what we have for l10n tests on 1.9.1? That would be necessary to not break our test-run with automation scripts. I will leave this bug open for now.
Assignee | ||
Comment 21•14 years ago
|
||
Attachment #512460 -
Flags: review?(anthony.s.hughes)
Assignee | ||
Comment 22•14 years ago
|
||
Attachment #512461 -
Flags: review?(anthony.s.hughes)
Attachment #512460 -
Flags: review?(anthony.s.hughes) → review+
Attachment #512461 -
Flags: review?(anthony.s.hughes) → review+
Assignee | ||
Updated•14 years ago
|
Attachment #512460 -
Flags: review?(hskupin)
Assignee | ||
Updated•14 years ago
|
Attachment #512461 -
Flags: review?(hskupin)
Updated•14 years ago
|
Attachment #512460 -
Flags: review?(hskupin) → review+
Updated•14 years ago
|
Attachment #512461 -
Flags: review?(hskupin) → review+
Comment 23•14 years ago
|
||
Dummy tests have been landed on older branches:
http://hg.mozilla.org/qa/mozmill-tests/rev/76ecfe94a265 (1.9.2)
http://hg.mozilla.org/qa/mozmill-tests/rev/1ea0d2b4822a (1.9.1)
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Updated•6 years ago
|
Product: Mozilla QA → Mozilla QA Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•