diff --git a/schemas/pulse-job.yml b/schemas/pulse-job.yml index 34bfe5944..a5b6aae0d 100644 --- a/schemas/pulse-job.yml +++ b/schemas/pulse-job.yml @@ -307,75 +307,9 @@ properties: type: 'string' minLength: 1 maxLength: 50 - steps: - type: array - description: | - This object defines what is seen in the Treeherder Log Viewer. - These values can be submitted here, or they will be generated - by Treeherder's internal log parsing process from the - submitted log. If this value is submitted, Treeherder will - consider the log already parsed and skip parsing. - items: - title: 'Step' - type: object - properties: - errors: - type: array - items: - title: 'Error' - type: object - properties: - line: - type: string - minLength: 1 - maxLength: 255 - linenumber: - type: integer - minimum: 0 - additionalProperties: false - name: - type: string - minLength: 1 - maxLength: 255 - timeStarted: - type: string - format: date-time - timeFinished: - type: string - format: date-time - lineStarted: - type: integer - minimum: 0 - lineFinished: - type: integer - minimum: 0 - result: - type: string - enum: - - success - - fail - - exception - - canceled - - unknown - required: - - name - - timeStarted - - lineStarted - - lineFinished - - timeFinished - - result - additionalProperties: false - errorsTruncated: - type: boolean - description: | - If true, indicates that the number of errors in the log was too - large and not all of those lines are indicated here. additionalProperties: false required: [url, name] - extra: - type: 'object' - description: Extra information that Treeherder reads on a best-effort basis version: type: 'integer' description: Message version diff --git a/tests/e2e/test_job_ingestion.py b/tests/e2e/test_job_ingestion.py index 0657dc151..0279e07dd 100644 --- a/tests/e2e/test_job_ingestion.py +++ b/tests/e2e/test_job_ingestion.py @@ -1,61 +1,9 @@ -import datetime -import json - -import pytest -from django.forms import model_to_dict from mock import MagicMock from tests.test_utils import add_log_response from treeherder.etl.jobs import store_job_data -from treeherder.log_parser.parsers import StepParser from treeherder.model.error_summary import get_error_summary -from treeherder.model.models import Job, JobDetail, JobLog, TextLogError, TextLogStep - -# TODO: Turn these into end to end taskcluster tests as part of removing buildbot -# support in bug 1443251, or else delete them if they're duplicating coverage. - - -@pytest.fixture -def text_log_summary_dict(): - return { - "step_data": { - "steps": [ - { - "name": "Clone gecko tc-vcs ", - "started_linenumber": 1, - "finished_linenumber": 100000, - "started": "2016-07-13 16:09:31", - "finished": "2016-07-13 16:09:31", - "result": "testfailed", - "errors": [ - { - "line": "12:34:13 INFO - Assertion failure: addr % CellSize == 0, at ../../../js/src/gc/Heap.h:1041", - "linenumber": 61918, - }, - { - "line": "12:34:24 WARNING - TEST-UNEXPECTED-FAIL | file:///builds/slave/talos-slave/test/build/tests/jsreftest/tests/jsreftest.html?test=ecma_5/JSON/parse-array-gc.js | Exited with code 1 during test run", - "linenumber": 61919, - }, - { - "line": "12:34:37 WARNING - PROCESS-CRASH | file:///builds/slave/talos-slave/test/build/tests/jsreftest/tests/jsreftest.html?test=ecma_5/JSON/parse-array-gc.js | application crashed [@ js::gc::Cell::tenuredZone() const]", - "linenumber": 61922, - }, - {"line": "12:34:38 ERROR - Return code: 256", "linenumber": 64435}, - ], - }, - { - "name": "Build ./build-b2g-desktop.sh /home/worker/workspace", - "started_linenumber": 1, - "finished_linenumber": 1, - "result": "success", - "started": "2016-07-13 16:09:31", - "finished": "2016-07-13 16:09:31", - }, - ], - "errors_truncated": False, - }, - "logurl": "https://queue.taskcluster.net/v1/task/nhxC4hC3RE6LSVWTZT4rag/runs/0/artifacts/public/logs/live_backing.log", - } +from treeherder.model.models import Job, JobLog, TextLogError def check_job_log(test_repository, job_guid, parse_status): @@ -88,9 +36,7 @@ def test_store_job_with_unparsed_log( 'job': { 'job_guid': job_guid, 'state': 'completed', - 'log_references': [ - {'url': log_url, 'name': 'buildbot_text', 'parse_status': 'pending'} - ], + 'log_references': [{'url': log_url, 'name': 'builds-4h', 'parse_status': 'pending'}], }, } store_job_data(test_repository, [job_data]) @@ -129,9 +75,7 @@ def test_store_job_pending_to_completed_with_unparsed_log( 'job': { 'job_guid': job_guid, 'state': 'completed', - 'log_references': [ - {'url': log_url, 'name': 'buildbot_text', 'parse_status': 'pending'} - ], + 'log_references': [{'url': log_url, 'name': 'builds-4h', 'parse_status': 'pending'}], }, } store_job_data(test_repository, [job_data]) @@ -141,254 +85,13 @@ def test_store_job_pending_to_completed_with_unparsed_log( assert len(get_error_summary(Job.objects.get(guid=job_guid))) == 2 -def test_store_job_with_parsed_log( - test_repository, push_stored, failure_classifications, monkeypatch -): - """ - test submitting a job with a pre-parsed log gets job_log_url - parse_status of "parsed" and does not parse, even though no text_log_summary - exists. - - This is for the case where they may want to submit it at a later time. - """ - - mock_parse = MagicMock(name="parse_line") - monkeypatch.setattr(StepParser, 'parse_line', mock_parse) - - job_guid = 'd22c74d4aa6d2a1dcba96d95dccbd5fdca70cf33' - job_data = { - 'project': test_repository.name, - 'revision': push_stored[0]['revision'], - 'job': { - 'job_guid': job_guid, - 'state': 'completed', - 'log_references': [ - { - 'url': 'http://ftp.mozilla.org/pub/mozilla.org/spidermonkey/...', - 'name': 'buildbot_text', - 'parse_status': 'parsed', - } - ], - }, - } - - store_job_data(test_repository, [job_data]) - - # ensure the parsing didn't happen - assert mock_parse.called is False - - -def test_store_job_with_text_log_summary_artifact_parsed( - test_repository, failure_classifications, push_stored, monkeypatch, text_log_summary_dict, -): - """ - test submitting a job with a pre-parsed log gets parse_status of - "parsed" and doesn't parse the log, but we get the expected set of - text log steps/errors and bug suggestions. - """ - - mock_parse = MagicMock(name="parse_line") - monkeypatch.setattr(StepParser, 'parse_line', mock_parse) - - job_guid = 'd22c74d4aa6d2a1dcba96d95dccbd5fdca70cf33' - job_data = { - 'project': test_repository.name, - 'revision': push_stored[0]['revision'], - 'job': { - 'job_guid': job_guid, - 'state': 'completed', - 'log_references': [ - { - 'url': 'http://ftp.mozilla.org/pub/mozilla.org/spidermonkey/...', - 'name': 'buildbot_text', - 'parse_status': 'parsed', - } - ], - 'artifacts': [ - { - "blob": json.dumps(text_log_summary_dict), - "type": "json", - "name": "text_log_summary", - "job_guid": job_guid, - } - ], - }, - } - - store_job_data(test_repository, [job_data]) - - # should have 4 error summary lines (aka bug suggestions) - assert len(get_error_summary(Job.objects.get(guid=job_guid))) == 4 - - # ensure the parsing didn't happen - assert mock_parse.called is False - - -def test_store_job_with_text_log_summary_artifact_pending( - test_repository, failure_classifications, push_stored, monkeypatch, text_log_summary_dict, -): - """ - test submitting a job with a log set to pending, but with a text_log_summary. - - This should detect the artifact, not parse, and just mark the log as parsed, - then generate bug suggestions. - """ - - mock_parse = MagicMock(name="parse_line") - monkeypatch.setattr(StepParser, 'parse_line', mock_parse) - - job_guid = 'd22c74d4aa6d2a1dcba96d95dccbd5fdca70cf33' - job_data = { - 'project': test_repository.name, - 'revision': push_stored[0]['revision'], - 'job': { - 'job_guid': job_guid, - 'state': 'completed', - 'log_references': [ - { - 'url': 'http://ftp.mozilla.org/pub/mozilla.org/spidermonkey/...', - 'name': 'buildbot_text', - 'parse_status': 'pending', - } - ], - 'artifacts': [ - { - "blob": json.dumps(text_log_summary_dict), - "type": "json", - "name": "text_log_summary", - "job_guid": job_guid, - } - ], - }, - } - - store_job_data(test_repository, [job_data]) - - # should have 4 error summary lines (aka bug suggestions) - assert len(get_error_summary(Job.objects.get(guid=job_guid))) == 4 - - # ensure the parsing didn't happen - assert mock_parse.called is False - - -def test_store_job_artifacts_by_add_artifact( - test_repository, failure_classifications, push_stored, monkeypatch, -): - """ - test submitting a job with artifacts added by ``add_artifact`` - - This has pre-parsed logs. Verify parse_status of "parsed" and that it - doesn't parse the logs. - - Submitted ``text_log_artifact`` should still trigger generation of the - bug suggestions. - """ - - mock_parse = MagicMock(name="parse_line") - monkeypatch.setattr(StepParser, 'parse_line', mock_parse) - - tls_blob = json.dumps( - { - "logurl": "https://autophone-dev.s3.amazonaws.com/pub/mozilla.org/mobile/tinderbox-builds/mozilla-inbound-android-api-9/1432676531/en-US/autophone-autophone-s1s2-s1s2-nytimes-local.ini-1-nexus-one-1.log", - "step_data": { - "steps": [ - { - "name": "foobar", - "result": "testfailed", - "started_linenumber": 1, - "finished_linenumber": 100000, - "started": "2016-07-13 16:09:31", - "finished": "2016-07-13 16:09:31", - "errors": [ - { - "line": "TEST_UNEXPECTED_FAIL | /sdcard/tests/autophone/s1s2test/nytimes.com/index.html | Failed to get uncached measurement.", - "linenumber": 64435, - } - ], - } - ] - }, - } - ) - - ji_blob = json.dumps({"job_details": [{"title": "mytitle", "value": "myvalue"}]}) - pb_blob = json.dumps({"build_url": "feh", "chunk": 1, "config_file": "mah"}) - - job_guid = 'd22c74d4aa6d2a1dcba96d95dccbd5fdca70cf33' - job_data = { - 'project': test_repository.name, - 'revision': push_stored[0]['revision'], - "job": { - "artifacts": [ - { - 'name': 'text_log_summary', - 'type': 'json', - 'blob': tls_blob, - 'job_guid': job_guid, - }, - {'name': 'Job Info', 'type': 'json', 'blob': ji_blob, 'job_guid': job_guid,}, - {'name': 'privatebuild', 'type': 'json', 'blob': pb_blob, 'job_guid': job_guid,}, - ], - "job_guid": job_guid, - "log_references": [ - { - "name": "autophone-nexus-one-1.log", - "parse_status": "parsed", - "url": "https://autophone-dev.s3.amazonaws.com/pub/mozilla.org/mobile/tinderbox-builds/mozilla-inbound-android-api-9/1432676531/en-US/autophone-autophone-s1s2-s1s2-nytimes-local.ini-1-nexus-one-1.log", - } - ], - "state": "completed", - }, - } - - store_job_data(test_repository, [job_data]) - - assert JobDetail.objects.count() == 1 - assert model_to_dict(JobDetail.objects.get(job__guid=job_guid)) == { - 'id': 1, - 'job': 1, - 'title': 'mytitle', - 'value': 'myvalue', - 'url': None, - } - - assert TextLogStep.objects.count() == 1 - assert model_to_dict(TextLogStep.objects.get(job__guid=job_guid)) == { - 'id': 1, - 'job': 1, - 'started': datetime.datetime(2016, 7, 13, 16, 9, 31), - 'finished': datetime.datetime(2016, 7, 13, 16, 9, 31), - 'name': 'foobar', - 'result': 1, - 'started_line_number': 1, - 'finished_line_number': 100000, - } - - assert TextLogError.objects.count() == 1 - text_log_error = TextLogError.objects.get(step__job__guid=job_guid) - assert model_to_dict(text_log_error) == { - 'id': 1, - 'line': 'TEST_UNEXPECTED_FAIL | /sdcard/tests/autophone/s1s2test/nytimes.com/index.html | Failed to get uncached measurement.', - 'line_number': 64435, - 'step': 1, - } - - # assert that some bug suggestions got generated - assert len(get_error_summary(Job.objects.get(guid=job_guid))) == 1 - - check_job_log(test_repository, job_guid, JobLog.PARSED) - - # ensure the parsing didn't happen - assert mock_parse.called is False - - def test_store_job_with_tier(test_repository, failure_classifications, push_stored): """test submitting a job with tier specified""" job_guid = 'd22c74d4aa6d2a1dcba96d95dccbd5fdca70cf33' job_data = { 'project': test_repository.name, 'revision': push_stored[0]['revision'], - 'job': {'job_guid': job_guid, 'state': 'completed', 'tier': 3,}, + 'job': {'job_guid': job_guid, 'state': 'completed', 'tier': 3}, } store_job_data(test_repository, [job_data]) @@ -403,7 +106,7 @@ def test_store_job_with_default_tier(test_repository, failure_classifications, p job_data = { 'project': test_repository.name, 'revision': push_stored[0]['revision'], - 'job': {'job_guid': job_guid, 'state': 'completed',}, + 'job': {'job_guid': job_guid, 'state': 'completed'}, } store_job_data(test_repository, [job_data]) diff --git a/tests/e2e/test_perf_ingestion.py b/tests/e2e/test_perf_ingestion.py deleted file mode 100644 index a5b37cf37..000000000 --- a/tests/e2e/test_perf_ingestion.py +++ /dev/null @@ -1,94 +0,0 @@ -import copy - -from treeherder.etl.jobs import store_job_data -from treeherder.perf.models import PerformanceDatum, PerformanceFramework, PerformanceSignature - -# TODO: Turn these into end to end taskcluster tests as part of removing buildbot -# support in bug 1443251, or else delete them if they're duplicating coverage. - - -def test_store_perf_artifact(test_repository, failure_classifications, push_stored): - PerformanceFramework.objects.get_or_create(name='cheezburger', enabled=True) - - job_guid = 'd22c74d4aa6d2a1dcba96d95dccbd5fdca70cf33' - job_data = { - 'project': test_repository.name, - 'revision': push_stored[0]['revision'], - 'job': { - 'job_guid': job_guid, - 'state': 'completed', - 'project': test_repository.name, - 'option_collection': {'opt': True}, - 'artifacts': [ - { - 'blob': { - "performance_data": { - "framework": {"name": "cheezburger"}, - "suites": [ - { - "name": "cheezburger metrics", - "value": 10.0, - "subtests": [ - {"name": "test1", "value": 20.0}, - {"name": "test2", "value": 30.0}, - ], - } - ], - } - }, - 'type': 'json', - 'name': 'performance_data', - 'job_guid': job_guid, - } - ], - }, - } - - store_job_data(test_repository, [job_data]) - - # we'll just validate that we got the expected number of results - # (we have validation elsewhere for the actual data adapters) - assert PerformanceSignature.objects.all().count() == 3 - assert PerformanceDatum.objects.all().count() == 3 - - -def test_store_perf_artifact_multiple(test_repository, failure_classifications, push_stored): - PerformanceFramework.objects.get_or_create(name='cheezburger', enabled=True) - perfobj = { - "framework": {"name": "cheezburger"}, - "suites": [ - { - "name": "cheezburger metrics", - "value": 10.0, - "subtests": [{"name": "test1", "value": 20.0}, {"name": "test2", "value": 30.0}], - } - ], - } - perfobj2 = copy.deepcopy(perfobj) - perfobj2['suites'][0]['name'] = "cheezburger metrics 2" - job_guid = 'd22c74d4aa6d2a1dcba96d95dccbd5fdca70cf33' - job_data = { - 'project': test_repository.name, - 'revision': push_stored[0]['revision'], - 'job': { - 'job_guid': job_guid, - 'state': 'completed', - 'project': test_repository.name, - 'option_collection': {'opt': True}, - 'artifacts': [ - { - 'blob': {"performance_data": [perfobj, perfobj2]}, - 'type': 'json', - 'name': 'performance_data', - 'job_guid': job_guid, - } - ], - }, - } - - store_job_data(test_repository, [job_data]) - - # we'll just validate that we got the expected number of results - # (we have validation elsewhere for the actual data adapters) - assert PerformanceSignature.objects.all().count() == 6 - assert PerformanceDatum.objects.all().count() == 6 diff --git a/tests/etl/test_job_loader.py b/tests/etl/test_job_loader.py index fcc8af69b..dfaf6a6ed 100644 --- a/tests/etl/test_job_loader.py +++ b/tests/etl/test_job_loader.py @@ -59,7 +59,7 @@ async def new_pulse_jobs(sample_data, test_repository, push_stored): for message in list(pulseMessages.values()): taskId = message["payload"]["status"]["taskId"] task = tasks[taskId] - print(taskId) + # If we pass task to handleMessage we won't hit the network taskRuns = await handleMessage(message, task) # handleMessage returns [] when it is a task that is not meant for Treeherder @@ -147,8 +147,8 @@ def test_ingest_pulse_jobs( assert [ {"name": item.name, "url": item.url, "parse_status": item.status} for item in job_logs.all() ] == logs_expected - - assert JobDetail.objects.count() == 2 + # we're no longer storing artifacts in this table + assert JobDetail.objects.count() == 0 def test_ingest_pending_pulse_job( @@ -175,7 +175,8 @@ def test_ingest_pending_pulse_job( # should not have processed any log or details for pending jobs assert JobLog.objects.count() == 2 - assert JobDetail.objects.count() == 2 + # we're no longer storing artifacts in this table + assert JobDetail.objects.count() == 0 def test_ingest_pulse_jobs_bad_project( diff --git a/tests/etl/test_load_artifacts.py b/tests/etl/test_load_artifacts.py index 3cfc9af7b..b0bc58a8d 100644 --- a/tests/etl/test_load_artifacts.py +++ b/tests/etl/test_load_artifacts.py @@ -1,35 +1,7 @@ import json from treeherder.etl.artifact import store_job_artifacts -from treeherder.model.models import JobDetail, TextLogError, TextLogStep - - -def test_load_long_job_details(test_job): - def max_length(field): - """Get the field's max_length for the JobDetail model""" - return JobDetail._meta.get_field(field).max_length - - (long_title, long_value, long_url) = ( - 't' * (2 * max_length("title")), - 'v' * (2 * max_length("value")), - 'https://' + ('u' * (2 * max_length("url"))), - ) - ji_artifact = { - 'type': 'json', - 'name': 'Job Info', - 'blob': json.dumps( - {'job_details': [{'title': long_title, 'value': long_value, 'url': long_url}]} - ), - 'job_guid': test_job.guid, - } - store_job_artifacts([ji_artifact]) - - assert JobDetail.objects.count() == 1 - - jd = JobDetail.objects.first() - assert jd.title == long_title[: max_length("title")] - assert jd.value == long_value[: max_length("value")] - assert jd.url == long_url[: max_length("url")] +from treeherder.model.models import TextLogError, TextLogStep def test_load_textlog_summary_twice(test_repository, test_job): diff --git a/tests/log_parser/test_artifact_builder_collection.py b/tests/log_parser/test_artifact_builder_collection.py index 61b6dba46..160079f51 100644 --- a/tests/log_parser/test_artifact_builder_collection.py +++ b/tests/log_parser/test_artifact_builder_collection.py @@ -28,7 +28,7 @@ def test_default_builders(): """test no builders""" lpc = ArtifactBuilderCollection("foo-url",) assert isinstance(lpc.builders, list) - assert len(lpc.builders) == 3 + assert len(lpc.builders) == 2 @responses.activate @@ -44,7 +44,6 @@ def test_all_builders_complete(): lpc.parse() exp = { "text_log_summary": {"step_data": {"steps": [], "errors_truncated": False}, "logurl": url,}, - "Job Info": {"job_details": [], "logurl": url,}, } assert exp == lpc.artifacts diff --git a/tests/log_parser/test_job_artifact_builder.py b/tests/log_parser/test_job_artifact_builder.py deleted file mode 100644 index 6b04dfe30..000000000 --- a/tests/log_parser/test_job_artifact_builder.py +++ /dev/null @@ -1,82 +0,0 @@ -import responses - -from tests import test_utils -from tests.test_utils import add_log_response -from treeherder.log_parser.artifactbuildercollection import ArtifactBuilderCollection -from treeherder.log_parser.artifactbuilders import BuildbotJobArtifactBuilder - - -@responses.activate -def do_test(log): - """ - Test a single log with the ``JobArtifactBuilder``. - - ``log`` - the url prefix of the log to test. Also searches for the - result file with the same prefix. - """ - - url = add_log_response("{}.txt.gz".format(log)) - - builder = BuildbotJobArtifactBuilder(url) - lpc = ArtifactBuilderCollection(url, builders=builder) - lpc.parse() - act = lpc.artifacts[builder.name] - - # :: Uncomment to create the ``exp`` files - # import json - # from tests.sampledata import SampleData - # with open(SampleData().get_log_path("{0}.jobartifact.json".format(log)), "w") as f: - # f.write(json.dumps(act, indent=2)) - - exp = test_utils.load_exp("{0}.jobartifact.json".format(log)) - - assert len(act) == len(exp) - for index, artifact in act.items(): - assert artifact == exp[index] - - -def test_crashtest_passing(): - """Process a job with a single log reference.""" - - do_test("mozilla-central_fedora-b2g_test-crashtest-1-bm54-tests1-linux-build50") - - -def test_opt_test_failing(): - """Process log with printlines and errors""" - do_test("mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138") - - -def test_build_failing(): - """Process a job with a single log reference.""" - - do_test("mozilla-central-macosx64-debug-bm65-build1-build15") - - -def test_mochitest_debug_passing(): - """Process a job with a single log reference.""" - - do_test("mozilla-central_mountainlion-debug_test-mochitest-2-bm80-tests1-macosx-build93") - - -def test_mochitest_pass(): - """Process a job with a single log reference.""" - - do_test("mozilla-central_mountainlion_test-mochitest-2-bm77-tests1-macosx-build141") - - -def test_mochitest_fail(): - """Process a job with a single log reference.""" - - do_test("mozilla-esr17_xp_test_pgo-mochitest-browser-chrome-bm74-tests1-windows-build12") - - -def test_mochitest_process_crash(): - """Test a mochitest log that has PROCESS-CRASH """ - - do_test("mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122") - - -def test_jetpack_fail(): - """Process a job with a single log reference.""" - - do_test("ux_ubuntu32_vm_test-jetpack-bm67-tests1-linux-build16") diff --git a/tests/log_parser/test_tinderbox_print_parser.py b/tests/log_parser/test_tinderbox_print_parser.py deleted file mode 100644 index 4d212654a..000000000 --- a/tests/log_parser/test_tinderbox_print_parser.py +++ /dev/null @@ -1,141 +0,0 @@ -import pytest - -from treeherder.log_parser.parsers import TinderboxPrintParser - -# a list of test cases for the tinderbox printlines parser -# every test case is composed by (input, output), where -# input is a tinderbox print line and output is a job artifact -# generated by the parser -TINDERBOX_TEST_CASES = ( - ( - ( - 'TinderboxPrint: ' - 'libxul_link:2918047744' - '' - ), - [ - { - 'content_type': 'link', - 'title': None, - 'url': 'http://graphs.mozilla.org/graph.html#tests=[[205,63,8]]', - 'value': 'libxul_link:2918047744', - } - ], - ), - ( - ( - 'TinderboxPrint: sources.xml: http://stage.mozilla.org/pub/mozilla.org/' - 'b2g/manifests/depend/mozilla-central/hamachi-eng/20140718040333/' - 'sources-5d0aad07bd13e04de0cd7befc0e2b83a.xml' - ), - [ - { - 'content_type': 'link', - 'title': 'sources.xml', - 'url': ( - 'http://stage.mozilla.org/pub/mozilla.org/' - 'b2g/manifests/depend/mozilla-central/hamachi-eng/20140718040333/' - 'sources-5d0aad07bd13e04de0cd7befc0e2b83a.xml' - ), - 'value': ( - 'http://stage.mozilla.org/pub/mozilla.org/' - 'b2g/manifests/depend/mozilla-central/hamachi-eng/20140718040333/' - 'sources-5d0aad07bd13e04de0cd7befc0e2b83a.xml' - ), - } - ], - ), - ( - ( - 'TinderboxPrint: mozharness_revlink: ' - 'https://hg.mozilla.org/build/mozharness/rev/16ba958057a8' - ), - [ - { - 'content_type': 'link', - 'title': 'mozharness_revlink', - 'url': 'https://hg.mozilla.org/build/mozharness/rev/16ba958057a8', - 'value': 'https://hg.mozilla.org/build/mozharness/rev/16ba958057a8', - } - ], - ), - ( - ( - 'TinderboxPrint: ' - '' - 'wpt_structured_full.log' - ': uploaded' - ), - [ - { - 'content_type': 'link', - 'title': 'artifact uploaded', - 'url': ( - 'http://mozilla-releng-blobs.s3.amazonaws.com' - '/blobs/cedar/sha512/9123cb277dbf1eb6d90' - ), - 'value': 'wpt_structured_full.log', - } - ], - ), - ( - ( - 'TinderboxPrint: ' - '' - 'libxul_link:2918047744' - '' - ), - [ - { - 'content_type': 'link', - 'title': None, - 'url': 'http://graphs.mozilla.org/graph.html#tests=[[205,63,8]]', - 'value': 'libxul_link:2918047744', - } - ], - ), - ( - ( - 'TinderboxPrint: ' - 'xpcshell-xpcshell
2153/1 ' - 'CRASH' - ), - [ - { - 'content_type': 'raw_html', - 'title': 'xpcshell-xpcshell', - 'value': ( - '2153/1 ' 'CRASH' - ), - } - ], - ), - ( - ( - 'TinderboxPrint: hazard results: ' - 'https://ftp-ssl.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/' - 'mozilla-central-linux64-br-haz/20150226025813' - ), - [ - { - 'content_type': 'link', - 'title': 'hazard results', - 'url': 'https://ftp-ssl.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/' - 'mozilla-central-linux64-br-haz/20150226025813', - 'value': 'https://ftp-ssl.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/' - 'mozilla-central-linux64-br-haz/20150226025813', - } - ], - ), -) - - -@pytest.mark.parametrize(("line", "artifact"), TINDERBOX_TEST_CASES) -def test_tinderbox_parser_output(line, artifact): - parser = TinderboxPrintParser() - parser.parse_line(line, 1) - - assert artifact == parser.get_artifact() diff --git a/tests/sample_data/job_data.txt b/tests/sample_data/job_data.txt index 3dd811dae..33f4948d7 100644 --- a/tests/sample_data/job_data.txt +++ b/tests/sample_data/job_data.txt @@ -1,304 +1,304 @@ -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384353546, "start_timestamp": 1384353553, "job_guid": "f1c75261017c7c5ce3000931dce4c442fe0a1297", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384353546/b2g_mozilla-release_emulator-jb-debug_dep-bm62-build1-build17.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-132", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384364989}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384353546, "start_timestamp": 1384353555, "job_guid": "9abb6f7d54a49d763c584926377f09835c5e1a32", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384353546/b2g_mozilla-release_emulator-jb_dep-bm58-build1-build29.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-462", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384364662}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384356854, "start_timestamp": 1384356876, "job_guid": "d9cb3668f75f8f1b0b4ef503778ad0b90595a693", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384353545/mozilla-release_snowleopard-debug_test-mochitest-browser-chrome-bm76-tests1-macosx-build14.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-007", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363994}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384356854, "start_timestamp": 1384356880, "job_guid": "ab952a4bbbc74f1d9fb3cf536073b371029dbd02", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384353545/mozilla-release_lion-debug_test-mochitest-browser-chrome-bm76-tests1-macosx-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-011", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384364849}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"resultset_id": 1, "superseded": ["f1c75261017c7c5ce3000931dce4c442fe0a1297", "9abb6f7d54a49d763c584926377f09835c5e1a32", "ab952a4bbbc74f1d9fb3cf536073b371029dbd02"], "project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384358654, "start_timestamp": 1384358660, "job_guid": "5da36fb825bc52d13fed5b805d44015b0f2f2f16", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384353545/mozilla-release_win7-ix-debug_test-mochitest-browser-chrome-bm74-tests1-windows-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-117", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363533}, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384358653, "start_timestamp": 1384358664, "job_guid": "cf393ee59ed4d7302fe0bfbbe8988511b46b3379", "name": "Mochitest Browser Chrome", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384353545/mozilla-release_win8-debug_test-mochitest-browser-chrome-bm69-tests1-windows-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-043", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363625}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384358653, "start_timestamp": 1384358665, "job_guid": "2914b818e425ad17dfe1a06cd7d0edd7cca4717a", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384353545/mozilla-release_xp-ix-debug_test-mochitest-browser-chrome-bm69-tests1-windows-build13.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-081", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363103}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358798, "job_guid": "f2702654e8169714bc8298e7a036e357fdba8f73", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384358790/b2g_mozilla-release_inari_dep-bm57-build1-build17.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-004", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384365240}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358800, "job_guid": "eea35c369c7a4914baea4216d04def59f6ea2a26", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384358790/b2g_mozilla-release_emulator-jb-debug_dep-bm57-build1-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-117", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384370888}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358801, "job_guid": "197eea8827f6c72f2727c41508dceb5ddcf95b66", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384358790/b2g_mozilla-release_nexus-4_dep-bm57-build1-build20.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-020", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384366248}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358801, "job_guid": "3f317a2869250b7f85876ac0cdc885923897ded2", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384358790/b2g_mozilla-release_emulator-debug_dep-bm57-build1-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-169", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384366258}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "66196b3a00613cbfdce94d19abcf1e1b1920d23c", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384358790/b2g_mozilla-release_hamachi_dep-bm61-build1-build20.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-067", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384365020}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "418c120f51dcdf4c2166c8621e69e450dfc068c0", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384358790/b2g_mozilla-release_unagi_dep-bm61-build1-build21.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-199", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384365992}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "d067152b725dd39fab7040a5813f5fad39638d2d", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384358790/b2g_mozilla-release_emulator_dep-bm84-build1-build1.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-027", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384366027}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "d089a64346a9a8f3c06fd0f5df6bb90023069cea", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384358790/b2g_mozilla-release_helix_dep-bm82-build1-build0.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-008", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384364297}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "da9e2cb9511e574521654d10f98d82aa8f8f8673", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384358790/b2g_mozilla-release_leo_dep-bm82-build1-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-019", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384364591}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358831, "job_guid": "d6cd47d87aeca666fbf9ea1e4422d9935fc305da", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384358790/b2g_mozilla-release_hamachi_eng_dep-bm65-build1-build24.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-475", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384365137}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384358953, "start_timestamp": 1384358958, "job_guid": "02d01930adcfaca9c2d00876fa3b6fe7d3fa5400", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev3 Fedora 12x64 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384353545/mozilla-release_fedora64-debug_test-mochitest-browser-chrome-bm52-tests1-linux-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-fedora64-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-r3-fed64-047", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384364572}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384359260, "start_timestamp": 1384359261, "job_guid": "c095b0a8541e8317959e722604d8d314bb8876e3", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev3 Fedora 12 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384353545/mozilla-release_fedora-debug_test-mochitest-browser-chrome-bm54-tests1-linux-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-fedora-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-r3-fed-071", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384365815}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384359260, "start_timestamp": 1384359289, "job_guid": "d365591b84cba5801971d812390985dff8a95b39", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384353545/mozilla-release_ubuntu32_vm-debug_test-mochitest-1-bm51-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-030", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363562}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384359260, "start_timestamp": 1384359293, "job_guid": "c7cc67ad1fc88df1b4d129511e515ef253ffd402", "name": "Reftest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384353545/mozilla-release_ubuntu32_vm-debug_test-reftest-bm67-tests1-linux-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-011", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384365488}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363320, "start_timestamp": 1384363321, "job_guid": "88b64ce5a69f27d8528b7ef9e7b7683c942edc60", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384358790/b2g_mozilla-release_emulator-jb_dep-bm85-build1-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-018", "reason": "Self-serve: Rebuilt by ryanvm@gmail.com", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384371295}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384363754, "start_timestamp": 1384363764, "job_guid": "bf82ac43a95eb48b7fec8ed9d583c63deba47e82", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384358790/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm51-tests1-linux-build37.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-014", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384364680}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384363754, "start_timestamp": 1384363770, "job_guid": "c0c0c1bfe777a45700218186f020363b513d65c9", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384358790/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-070", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384365120}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363894, "job_guid": "e4b68da60b511cada9e3e113a530a4f15691aabf", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384363890/b2g_mozilla-release_emulator-jb_dep-bm85-build1-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-007", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373222}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363894, "job_guid": "029a67049ad5acfa87fb2963ce12ac464b315d7f", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384363890/b2g_mozilla-release_leo_dep-bm85-build1-build0.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-030", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384370564}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363905, "job_guid": "cf955463e9e240110b9006e26138654261de592f", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384363890/b2g_mozilla-release_emulator-jb-debug_dep-bm63-build1-build23.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-088", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384375379}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363910, "job_guid": "762a0395eb90d279896a60af66760948ef778c0f", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384363890/b2g_mozilla-release_hamachi_dep-bm82-build1-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-015", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384369129}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363912, "job_guid": "8e9d00f5877cf4affedd6b20bbab8f256252fae3", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384363890/b2g_mozilla-release_unagi_dep-bm61-build1-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-131", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384370000}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "7b22625a0492a9f89b0cb0cb0105aed6ccb0e3cd", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384363890/b2g_mozilla-release_helix_dep-bm86-build1-build0.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-028", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384371149}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "fd7d498ad2de6b1605c3a478e61080d7830158eb", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384363890/b2g_mozilla-release_nexus-4_dep-bm86-build1-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-033", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384371245}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "640aa817f5248f4db81c64fb43f666df454800c4", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384363890/b2g_mozilla-release_inari_dep-bm64-build1-build25.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-457", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384370162}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "4a91706ef9cb406f5364754fcfefa953c1d0b327", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384363890/b2g_mozilla-release_emulator-debug_dep-bm86-build1-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-012", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384370242}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363923, "job_guid": "d71af093f00f97e752accbbf7916fb49e30ea9e7", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384363890/b2g_mozilla-release_hamachi_eng_dep-bm64-build1-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-344", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384369973}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363923, "job_guid": "6ff5576451c16d382f5159f60ae7726f7dd34364", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384363890/b2g_mozilla-release_emulator_dep-bm64-build1-build26.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-354", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384370465}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364494, "job_guid": "8dc0ef35aa38e9c4397e18d3193544267ef54aed", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384364489/b2g_mozilla-release_hamachi_eng_dep-bm84-build1-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-035", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384370626}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364494, "job_guid": "fee06deb99c38d10fa7592a0eb05bf41cdb3f685", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384364489/b2g_mozilla-release_helix_dep-bm84-build1-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-032", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384370942}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364495, "job_guid": "a6fac5b7ac420496ab593d44f00594c65d11d4ab", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384364489/b2g_mozilla-release_emulator-debug_dep-bm84-build1-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-006", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384371153}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364495, "job_guid": "bb0d9c35af106ada7dd2da14e6c4613be343775b", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384364489/b2g_mozilla-release_leo_dep-bm84-build1-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-037", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384371292}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364505, "job_guid": "8bac3f4654d57f8eb15dc85034c41b1e0f9e0e1e", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384364489/b2g_mozilla-release_emulator-jb_dep-bm63-build1-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-022", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384376096}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364512, "job_guid": "8fd74233724900662e03984c6d913807508597fe", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384364489/b2g_mozilla-release_unagi_dep-bm61-build1-build23.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-159", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384371182}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364531, "job_guid": "ef3c1c359e44d27972cc833469b64990ee6bedeb", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384364489/b2g_mozilla-release_inari_dep-bm65-build1-build24.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-471", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384371120}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364533, "job_guid": "9298fafb5cb2a20835451fffb6f2dc3b6a065333", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384364489/b2g_mozilla-release_nexus-4_dep-bm58-build1-build16.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-430", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384371546}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364533, "job_guid": "1e54f7dc9c67d644061be30d41ba89452f1fd94a", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384364489/b2g_mozilla-release_emulator-jb-debug_dep-bm62-build1-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-053", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384375870}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364534, "job_guid": "6b1441fac7fa9b05ff20e0ad22157199dc7675e1", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384364489/b2g_mozilla-release_hamachi_dep-bm58-build1-build17.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-419", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384371273}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364534, "job_guid": "7be5f3ce34a67238d0a54b24f8484d1cfd1270ee", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384364489/b2g_mozilla-release_emulator_dep-bm58-build1-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-441", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384371422}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365390, "job_guid": "e8027a571320e3c81feb2f869ccb7bfb2498e2d5", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384365389/b2g_mozilla-release_emulator-jb_dep-bm86-build1-build1.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-013", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384374937}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365391, "job_guid": "edef5d7ef58c3e9c7750765e217d52b6d382c9dd", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384365389/b2g_mozilla-release_emulator_dep-bm65-build1-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-475", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384372135}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365391, "job_guid": "6fbf86ed6ab2d0736a30680bed4f6f6f3c0c8c63", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384365389/b2g_mozilla-release_unagi_dep-bm65-build1-build26.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-329", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384372359}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365412, "job_guid": "c446b15a60cd6f24209e9757544693c2a249b8b4", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384365389/b2g_mozilla-release_hamachi_dep-bm61-build1-build21.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-067", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384366589}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365412, "job_guid": "dc9a8b88da133d5dfa6fe445488361c4615d9694", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384365389/b2g_mozilla-release_nexus-4_dep-bm82-build1-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-019", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384371760}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365420, "job_guid": "d7bc254e9f3091b5adad0a857472feba39b333fb", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384365389/b2g_mozilla-release_inari_dep-bm57-build1-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-068", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384371469}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365433, "job_guid": "5b685dcf4a6263e679acc4ca90093adfe9390ac8", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384365389/b2g_mozilla-release_hamachi_eng_dep-bm62-build1-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-132", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384371426}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365433, "job_guid": "84d04f66cd2d9442b38a63fd1298e6044efa9881", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384365389/b2g_mozilla-release_emulator-debug_dep-bm58-build1-build20.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-462", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373089}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365571, "job_guid": "3432cd8c502ff37737c27569f251218f0a10d3ef", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384365389/b2g_mozilla-release_leo_dep-bm64-build1-build24.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-319", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384371980}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365584, "job_guid": "f31e5524235d6428dfbd5223bb5dd7f4d3dc549e", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384365389/b2g_mozilla-release_helix_dep-bm57-build1-build19.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-114", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384372038}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384365997, "job_guid": "0b6dccf64241b0a331ea62e79d816deb4980bd7c", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384365990/b2g_mozilla-release_emulator-jb_dep-bm61-build1-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-187", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384377210}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366043, "job_guid": "6fbdedaa266efac01132ef46dd446080ea9ae6ef", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384365990/b2g_mozilla-release_helix_dep-bm61-build1-build21.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-199", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384372756}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366057, "job_guid": "5ce54665d443edc2b8572e347de42632e0bc8273", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384365990/b2g_mozilla-release_unagi_dep-bm84-build1-build1.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-027", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384372987}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366116, "job_guid": "fcbe5f0a1631c39a783a4388e97616a5462b5e88", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384365990/b2g_mozilla-release_hamachi_eng_dep-bm61-build1-build19.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-076", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384372365}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366193, "job_guid": "6c7ce8d04cf225d363dbe6a119f1645885e168bf", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384365990/b2g_mozilla-release_inari_dep-bm57-build1-build19.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-061", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384372394}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366195, "job_guid": "160f687ba793208ce24d3c7ef5833684d01f3f06", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384365990/b2g_mozilla-release_emulator_dep-bm63-build1-build23.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-021", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384372969}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366196, "job_guid": "fb0f79e4fa832de68e391d673cb99c65d2e22712", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384365990/b2g_mozilla-release_emulator-debug_dep-bm57-build1-build19.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-163", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373573}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366199, "job_guid": "997d69db9a264372b2bae34d113dce320f1c02d9", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384365990/b2g_mozilla-release_nexus-4_dep-bm61-build1-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-100", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384373412}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366208, "job_guid": "e027e926c37b0b8a65cbbced72b7bae9e74c0243", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384365990/b2g_mozilla-release_leo_dep-bm57-build1-build13.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-102", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384373439}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366248, "job_guid": "e2f44911df5a493d26873aa95b6349bec242f69f", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384365990/b2g_mozilla-release_hamachi_dep-bm58-build1-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-423", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384372284}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366612, "job_guid": "7069f711266b7c7bf9d68764a632b4640786be22", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384366603/b2g_mozilla-release_emulator-jb-debug_dep-bm82-build1-build1.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-017", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384376996}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366618, "job_guid": "9fab649685fdacf97919fca9cb5c8bc2411f5a8d", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384366603/b2g_mozilla-release_hamachi_dep-bm61-build1-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-107", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384371962}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366630, "job_guid": "f97ca2acd7a5356c74bc5e44fc5f6efb14b778bc", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384366603/b2g_mozilla-release_nexus-4_dep-bm65-build1-build17.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-400", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384374223}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366631, "job_guid": "112fe90234d6bf31bd30b0106b0d61b2e50dc252", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384366603/b2g_mozilla-release_leo_dep-bm65-build1-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-403", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384373097}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366634, "job_guid": "a1e0678857da80262615533483b10f4e81a95e55", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384366603/b2g_mozilla-release_emulator-debug_dep-bm62-build1-build19.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-057", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373859}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366647, "job_guid": "37246dcb41a859440bc8ee67fbfe652abfcdc5f5", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384366603/b2g_mozilla-release_unagi_dep-bm57-build1-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-169", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384372653}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366647, "job_guid": "7f0faa2fad265d059beb19697dc31b41d4b86a17", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384366603/b2g_mozilla-release_emulator_dep-bm57-build1-build15.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-109", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373325}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366850, "job_guid": "2892e823506fc0c9243e547796b0ad5b5e9faad7", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384366603/b2g_mozilla-release_helix_dep-bm57-build1-build20.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-028", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384373117}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366870, "job_guid": "a27abd8ffd3c695fb0c95b598ab8af9d203a7997", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384366603/b2g_mozilla-release_hamachi_eng_dep-bm61-build1-build20.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-175", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384373167}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366931, "job_guid": "fe27632e59c7f1df3cf8453647b210a45a4825fe", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384366603/b2g_mozilla-release_inari_dep-bm64-build1-build26.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-455", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384372931}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367721, "job_guid": "955d841b82f384e8cd183b3ec9b25a86a67768ab", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384367508/b2g_mozilla-release_unagi_dep-bm65-build1-build27.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-477", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384374671}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367792, "job_guid": "f96127cb4fe53669064f2516a59f55f08e6afdfe", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384367508/b2g_mozilla-release_emulator-debug_dep-bm64-build1-build25.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-306", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384375191}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367793, "job_guid": "29647ce479a2eba6a1a1273b866b8262ff1e0e5c", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384367508/b2g_mozilla-release_helix_dep-bm58-build1-build30.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-302", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384374180}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367797, "job_guid": "c3599febefed92e844c1e6d91caae073f4aaa352", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384367508/b2g_mozilla-release_inari_dep-bm64-build1-build27.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-370", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384374093}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367797, "job_guid": "747c45a8c18b672e411506bc352e73df94e3898a", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384367508/b2g_mozilla-release_emulator_dep-bm64-build1-build27.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-468", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384374278}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367798, "job_guid": "12f8bdddd5381217f3b64a49d5358b68bd959706", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384367508/b2g_mozilla-release_leo_dep-bm64-build1-build25.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-479", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384374051}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367798, "job_guid": "eec5154a01048ad2c7b46e201e7c3f8e3fd9b5f4", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384367508/b2g_mozilla-release_hamachi_eng_dep-bm64-build1-build23.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-304", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384374295}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367802, "job_guid": "977e434e6b172d88a87284f6dd4ebf7171f52994", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384367508/b2g_mozilla-release_nexus-4_dep-bm64-build1-build29.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-326", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384375157}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367803, "job_guid": "baad3525cd5bec48c997b2ce23812c8e8ccb1cc7", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384367508/b2g_mozilla-release_hamachi_dep-bm64-build1-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-448", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384373832}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367836, "start_timestamp": 1384367838, "job_guid": "91952e70a2d4bacee6a9074a4a660e78fbbfe006", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384363890/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm52-tests1-linux-build14.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-089", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384368794}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367836, "start_timestamp": 1384367838, "job_guid": "3bc00a63f22f13ee61696cdcd8eabc184172f56b", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384363890/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm67-tests1-linux-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-042", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384369226}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367957, "start_timestamp": 1384367960, "job_guid": "1293510622e77a1454be3b4ea70b09464a2a68a1", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384364489/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm53-tests1-linux-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-312", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384369353}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367957, "start_timestamp": 1384367960, "job_guid": "ceadb36844677d753f2c2842ab7347ee28a9aec7", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384364489/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm53-tests1-linux-build35.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-393", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384368866}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369280, "job_guid": "6a03d5a75347ecc9675e37125d79a5d741198896", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-4-bm79-tests1-macosx-build15.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-027", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370027}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369280, "job_guid": "a5bab0a005bcc3a42edb8df8fe0405fd7a8b874d", "name": "XPCShellTest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-xpcshell-bm79-tests1-macosx-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-012", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384370673}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369280, "job_guid": "5bdbdb3c1d952a712f6086a05c9c5b45e8828bd2", "name": "JSReftest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-jsreftest-bm75-tests1-macosx-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-090", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370977}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369280, "job_guid": "11eeb61b768de42b22209262c7cfaf3bd81d4ebd", "name": "Mochitest Other", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-other-bm79-tests1-macosx-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-019", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371409}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "a8a81cfcfdb6dcf407dce0f9b4d64d990801342c", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-2-bm79-tests1-macosx-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-071", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370610}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "f6d2139352f71b12b5046f76b94996f5b72b31a6", "name": "Jetpack SDK Test", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-jetpack-bm79-tests1-macosx-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-016", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371240}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "2d6681d84bc4c35a83316305c63064c6fe003023", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-browser-chrome-bm79-tests1-macosx-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-049", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384376482}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "719316831115bb176201dde3ddff8f7f0669fccf", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-3-bm79-tests1-macosx-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-044", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371553}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "e5adb6e36623eff3f823b0fe5658d58491e64659", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-3-bm75-tests1-macosx-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-041", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371737}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "44b2692c45d1e683daf8da4fd5ee15679cc8af7d", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-browser-chrome-bm79-tests1-macosx-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-061", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384377339}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "b369b0febff2508fbb1e12a5f8edc2726bdbddb5", "name": "Crashtest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-crashtest-bm79-tests1-macosx-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-068", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370195}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "2a87d077878e6f85fd7c9402449dc479b9fd6eee", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-4-bm79-tests1-macosx-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-040", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370036}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "e2848ccd900f6eae4c7ab3c6a67011c25ca4403b", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-5-bm79-tests1-macosx-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-074", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370381}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "a251f8daea5b70e09ea3a7721dbf8e891b3dde6b", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-5-bm79-tests1-macosx-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-060", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370426}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "d12403f04b4a0f48bb5b535a2259758c4a19042a", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-1-bm79-tests1-macosx-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-048", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372256}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "94897be5c1c091a1f3d5cc395b259c90229660b9", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-2-bm79-tests1-macosx-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-021", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370511}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "f78405ffbb85e6213ae433a8a0991025f8fb4f0e", "name": "XPCShellTest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-xpcshell-bm75-tests1-macosx-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-059", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384370617}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "ca1e0423bb96f7793c443508db7ea6f03c6dec00", "name": "JSReftest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-jsreftest-bm75-tests1-macosx-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-052", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370860}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "1e5cb2597b8a8b6c210f2d57058365003fe74996", "name": "Jetpack SDK Test", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-jetpack-bm79-tests1-macosx-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-070", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371438}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "ea00d44b1989ced494f2dcf0024fe0d06bcd0fc0", "name": "Mochitest Other", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-other-bm79-tests1-macosx-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-001", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371591}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "4f2cc9aca0190855b11dbcf9a52ee99f7c00dece", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-1-bm79-tests1-macosx-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-033", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372183}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "9b60e8a601d4909be5d1ba171e93a78026dfe7cf", "name": "Marionette Framework Unit Tests", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-marionette-bm79-tests1-macosx-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-038", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384369700}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "19c761572ce04ee527dbc93873086148e10dd53e", "name": "Reftest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-reftest-bm79-tests1-macosx-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-009", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372565}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369284, "job_guid": "8c89e8965dc52efd837c0bf78c310c4a78eb72b5", "name": "Marionette Framework Unit Tests", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-marionette-bm79-tests1-macosx-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-040", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384369634}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369284, "job_guid": "ac7f6310e2b0352b298367464600521f573f8c3f", "name": "Crashtest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-crashtest-bm79-tests1-macosx-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-060", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370138}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369284, "job_guid": "a0059c6c1545a3802699a4132c891f5a7d681351", "name": "Reftest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-reftest-bm79-tests1-macosx-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-058", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372500}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369285, "job_guid": "0d33d20f24c178b74d88adce58f42f08674ea107", "name": "Marionette Framework Unit Tests", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-marionette-bm77-tests1-macosx-build16.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-083", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384369622}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369286, "job_guid": "ac9ed2cf223b20cc01bc64659d41f1df59867020", "name": "XPCShellTest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-xpcshell-bm80-tests1-macosx-build14.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-042", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384369974}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369286, "job_guid": "24df0f6a8c2e333863f65bd1935778d78493e9c2", "name": "Mochitest Other", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-other-bm77-tests1-macosx-build21.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-056", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370994}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "fc63edc1bc64b89c050c474b62e6f9cbaf06df29", "name": "Jetpack SDK Test", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-jetpack-bm77-tests1-macosx-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-029", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384370843}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "34a9ff06125225d6b42fd190aa12b2bbeb2d1bac", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-3-bm80-tests1-macosx-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-085", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371187}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "1b9dd7054199393aa480414777b48b2083d10544", "name": "Crashtest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-crashtest-bm80-tests1-macosx-build20.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-076", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370000}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "88f467d34c8e5825972d1cc308149e8a3cd9ba24", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-5-bm80-tests1-macosx-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-003", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370119}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "337a0d95845bee5a925aafbb4e993f9783640b68", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-2-bm80-tests1-macosx-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-058", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370329}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369288, "job_guid": "af0c1da66b23746a13d7cb96972e95a036d87b33", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-4-bm80-tests1-macosx-build23.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-012", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384369899}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369288, "job_guid": "cadb6d0755c620aaa6188d4dbe205cba551f8929", "name": "Reftest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-reftest-bm80-tests1-macosx-build20.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-080", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371617}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369288, "job_guid": "62334d0ff13fff28b2dbebed6daa804520bb54d5", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-1-bm80-tests1-macosx-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-007", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371661}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369288, "job_guid": "0126cef2d82f6a7d24e606e3ad6a49db08766f54", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-browser-chrome-bm80-tests1-macosx-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-025", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375353}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369289, "job_guid": "8832e1ee705c7c86be1f50973646ee0a7ec3fd5b", "name": "JSReftest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-jsreftest-bm80-tests1-macosx-build20.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-008", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370723}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384370777, "start_timestamp": 1384370782, "job_guid": "53028b7b1ffb251fda504d5ecb4b0505ed307bf0", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384365389/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm53-tests1-linux-build36.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-417", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384371684}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384370777, "start_timestamp": 1384370782, "job_guid": "8fc2d79c8ed75b798ca9a9b0fec7909aeee1cab9", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384365389/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm53-tests1-linux-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-350", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384372179}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371017, "job_guid": "a9da9d4899c9fce349db0c9eb35471705198836a", "name": "JSReftest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-jsreftest-bm80-tests1-macosx-build29.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-084", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371633}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371017, "job_guid": "3acd021fbba297eb542d68c7584211406e0f2c11", "name": "Mochitest Other", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-other-bm80-tests1-macosx-build31.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-024", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371907}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371017, "job_guid": "741490f5f6408c8992608aabf4ba771cfb54acb6", "name": "Crashtest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-crashtest-bm80-tests1-macosx-build22.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-076", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371445}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "744280702c778ec9526e39755ac155d63b963663", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-4-bm80-tests1-macosx-build21.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-058", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371372}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "55e6c23ff89ce3c9a5b7d72e90389afd6810998b", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-2-bm80-tests1-macosx-build28.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-082", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371541}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "2a28e91c714b93b46180ad8b94e82d6149231dea", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-browser-chrome-bm80-tests1-macosx-build26.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-074", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372641}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "5ed98bf1f2b13d8717304ff478653e34fdc59c4c", "name": "Jetpack SDK Test", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-jetpack-bm80-tests1-macosx-build23.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-044", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371592}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "8b64c3db69ef11020ee461c87b3b1f22ae4b7796", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-3-bm80-tests1-macosx-build21.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-031", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372038}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371019, "job_guid": "bd52cc6e7bb5c3d9909f2af92749789a6d40714a", "name": "XPCShellTest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-xpcshell-bm80-tests1-macosx-build18.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-037", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371621}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371019, "job_guid": "9d1f6fad38fbb034ec75bb15260953242ff9a55f", "name": "Reftest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-reftest-bm80-tests1-macosx-build26.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-022", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372119}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371019, "job_guid": "e01c5a3ba66a88e4fb0fd715c0c25c80290a8003", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-1-bm80-tests1-macosx-build25.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-011", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372323}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371019, "job_guid": "6ef18c12f07310526b89899000803d2222b91a5e", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-5-bm80-tests1-macosx-build35.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-077", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371463}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371024, "job_guid": "2d479b57bcd818537429c2cdbaf895d30e001755", "name": "Jetpack SDK Test", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-jetpack-bm75-tests1-macosx-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-052", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371713}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371025, "job_guid": "35c0b15d21c55756b4e55d4237add3522f61a326", "name": "Crashtest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-crashtest-bm75-tests1-macosx-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-064", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371523}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371026, "job_guid": "df38b7c187388fdfe3f46da4206bf52447d4440f", "name": "XPCShellTest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-xpcshell-bm75-tests1-macosx-build17.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-059", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371749}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371026, "job_guid": "d242ff753275f50cd9a9718918ad07f9c6ed68df", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-3-bm75-tests1-macosx-build14.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-015", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372152}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371027, "job_guid": "e7ead06cb2ea42db21d242e18f3af8b546158e3a", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-3-bm75-tests1-macosx-build15.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-024", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372143}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371027, "job_guid": "0b5f5b9c6668562dc6e5cdf1ad405b6054733a24", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-2-bm75-tests1-macosx-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-065", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371537}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371028, "job_guid": "a61936d29ba401c04c255a54bc9e246bc44082c0", "name": "Reftest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-reftest-bm75-tests1-macosx-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-014", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372769}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371029, "job_guid": "d86347d984cba1286f92fcc8b245118a34d96e9a", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-2-bm75-tests1-macosx-build17.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-055", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371564}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371029, "job_guid": "55112a1073669c8d978483dc2d1ecb4bf83eec50", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-5-bm75-tests1-macosx-build17.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-061", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371548}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371030, "job_guid": "e00396d23cde8da728f46a4c167938e34252049a", "name": "Reftest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-reftest-bm75-tests1-macosx-build17.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-011", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372787}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371030, "job_guid": "21be75daf17f21ac1c7110efa9d2fc998f67a34e", "name": "JSReftest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-jsreftest-bm75-tests1-macosx-build16.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-032", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371690}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371035, "job_guid": "28ffa0893ce881258303cce0badb21093ceb2721", "name": "Mochitest Other", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-other-bm79-tests1-macosx-build13.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-021", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371953}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371035, "job_guid": "712218e9194d36c394f05ec43ec3c3e437242eaf", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-1-bm79-tests1-macosx-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-074", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372503}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371035, "job_guid": "f3841b09f2611724d8060864e0ebf11b8c3ec4ab", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-5-bm79-tests1-macosx-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-071", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371540}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371035, "job_guid": "61067d70aca2f7bec6fa44476171190415271306", "name": "Crashtest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-crashtest-bm79-tests1-macosx-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-074", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371545}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "a870c332e2f2b3b06eb73540fa58c5ba0ca28961", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-4-bm76-tests1-macosx-build15.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-067", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371402}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "4b18d3d8a196e25daaea0c7c24f4e3bd7fc8f49f", "name": "Jetpack SDK Test", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-jetpack-bm79-tests1-macosx-build16.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-089", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371702}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "7d0b2d2de9dc38c05563648c69577d8e5f40f597", "name": "XPCShellTest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-xpcshell-bm79-tests1-macosx-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-063", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371740}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "62e2456334025bbccc49270fbd96a13cf674a98a", "name": "Mochitest Other", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-other-bm79-tests1-macosx-build14.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-060", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371938}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "64d3dc13bbd2fc1026688cde5f5d7cea48a784a1", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-1-bm79-tests1-macosx-build15.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-012", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372528}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "f50e19808ca86af064f2f462c45b63c20714b1d1", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-browser-chrome-bm79-tests1-macosx-build14.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-013", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373171}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371038, "job_guid": "e436459b57433aa923a1562d68eec1406d299600", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-browser-chrome-bm76-tests1-macosx-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-032", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373149}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371039, "job_guid": "edab19788ff46467ce85101d5000907994a7276a", "name": "JSReftest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-jsreftest-bm76-tests1-macosx-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-027", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371730}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371040, "job_guid": "d71ff62c4cb3b845f6b02834a5fa43c2403a6ec1", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-4-bm76-tests1-macosx-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-008", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371391}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384371138, "start_timestamp": 1384371140, "job_guid": "45a36c12fd02528e5bd7171f05003c568700a080", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384365990/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm54-tests1-linux-build25.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-432", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384372056}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384371138, "start_timestamp": 1384371141, "job_guid": "e0b112594343e9e9b980072d2189ebdaaec4173b", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384365990/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm54-tests1-linux-build13.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-439", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384372550}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372155, "job_guid": "93a7962f0a848275f45be2306fd909a9a1fc7aa2", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-4-bm54-tests1-linux-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-369", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373088}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372155, "job_guid": "644b3682aafe0ff7d7e12b7ccace7de1f76aff48", "name": "JSReftest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-jsreftest-bm54-tests1-linux-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-spot-470", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373979}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372156, "job_guid": "9fc4720b7e8cec90bf900c992ae0e0f3b22730f7", "name": "Crashtest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-crashtest-bm72-tests1-windows-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-120", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372542}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372156, "job_guid": "724ad9f2eadeed2ff6becb4f9ad4e06ffd2cd9b4", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-2-bm71-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-117", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372808}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "551797e8e9c167a65f1fa338054a62e3dd61bac2", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-4-bm72-tests1-windows-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-025", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372557}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "2c24258eda3072d5f8f35880f0619d548397f025", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-5-bm72-tests1-windows-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-022", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372607}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "9ff6457eceaca40b5601272e4cb9d5be23c08119", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-5-bm69-tests1-windows-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-021", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372647}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "dd26cd82fe58c8c1d79ceff5e6b70a52f3a144de", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-2-bm72-tests1-windows-build1.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-029", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372657}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "665a54569114b17babe117935b62f7ed043a71dc", "name": "Crashtest", "reference_data_name": "WINNT 6.2 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-crashtest-bm72-tests1-windows-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-092", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372895}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "88d9dba0529c75aa404a961bda7a6f2089b18ee5", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-3-bm72-tests1-windows-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-083", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373484}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "0cff35ba20ad05fd0bc4398a33388e1bf17e0551", "name": "Mochitest Other", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-other-bm51-tests1-linux-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-146", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374156}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "6375e3aad3da188ded20810fb05f25c731c7f10c", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-3-bm72-tests1-windows-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-113", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373478}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "f8f8e3874266187c768a1062abfa39e8f294272b", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-1-bm72-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-035", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373594}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "175c4ebfcbb795f064d19a6181fdf55a447cf8f7", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-4-bm71-tests1-windows-build1.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-073", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372549}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "9430c0cbeebc4eebc14c32546e3a04cdc84a2eca", "name": "Jetpack SDK Test", "reference_data_name": "Windows XP 32-bit mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-jetpack-bm72-tests1-windows-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-040", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372736}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "1786cc0dc6d09af27eac984c0a6d18dd1a0a4c04", "name": "Reftest Unaccelerated", "reference_data_name": "Windows 7 32-bit mozilla-release opt test reftest-no-accel", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-reftest-no-accel-bm72-tests1-windows-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-096", "reason": "scheduler", "result": "success", "job_symbol": "Ru", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373136}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "96afdd6895ba1631c3e537eac9d7120ffd00bcf7", "name": "XPCShellTest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-xpcshell-bm72-tests1-windows-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-077", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373266}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "7d375c5330edc3e28788cc98f4c2019e12830b5f", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-2-bm72-tests1-windows-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-012", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372745}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "04f98cd7fc1140ea6f145b96db1422c1ac354946", "name": "Jetpack SDK Test", "reference_data_name": "Windows 7 32-bit mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-jetpack-bm69-tests1-windows-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-052", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372851}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "32dbeb2be813335b4c78db50af3ad0b6d7c4bfa1", "name": "JSReftest", "reference_data_name": "WINNT 6.2 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-jsreftest-bm71-tests1-windows-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-085", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372862}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "fadf060ad6cd073314df74894925084f08770347", "name": "JSReftest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-jsreftest-bm72-tests1-windows-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-055", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372882}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "9d9c5bbc5ab84de4e4b7f512a4c1866054477486", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-3-bm72-tests1-windows-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-067", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373260}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "186c4caa94328226a610eee12c771d549122442a", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-1-bm72-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-083", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373501}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "ca7333bee025e33e37feefa17488a9648dd8fe3a", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-browser-chrome-bm72-tests1-windows-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-127", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374328}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "cadfae60182f3ca548c1901a64a6e187f36ba93a", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-4-bm71-tests1-windows-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-057", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372509}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "ad11bcd621002a6d634ac0a9faf90ec12dba59c6", "name": "Jetpack SDK Test", "reference_data_name": "WINNT 6.2 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-jetpack-bm71-tests1-windows-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-058", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372960}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "706252ef8c63222a75e3b240d5501fff2b8a14ea", "name": "Mochitest Other", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-other-bm72-tests1-windows-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-044", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373010}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "b65c1aa751fba21ad9791f5cab38146f76b2680b", "name": "Mochitest Other", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-other-bm72-tests1-windows-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-098", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373070}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "426ed14dfd21f55e229077b7c1b06c038803afdc", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-browser-chrome-bm72-tests1-windows-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-078", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373758}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "3b01772c0d50e45116fa420dfffe7663923569a5", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-1-bm72-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-018", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373585}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "9189f4c23774773c9fd734d3f1ac96bc71919aeb", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-5-bm69-tests1-windows-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-115", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372662}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "58dfa5e23b01dbd9503ca8797f30753b8f24e041", "name": "Crashtest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-crashtest-bm72-tests1-windows-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-060", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372681}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "0f086fa197ae8e6fe08d181e09d6b56f8fd6aa53", "name": "XPCShellTest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-xpcshell-bm72-tests1-windows-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-060", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372688}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "43f04318bac0e53e840fb2448d08107c543f20f7", "name": "JSReftest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-jsreftest-bm72-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-129", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372798}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "f45a6928398f1a675e42a5c0b223b4345a9600d8", "name": "Mochitest Other", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-other-bm71-tests1-windows-build1.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-006", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373137}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "5b1952f37314113dabbb010c70413fb2e9e6a0ea", "name": "Reftest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-reftest-bm72-tests1-windows-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-038", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373170}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372162, "job_guid": "13560436f5bc52fb150458a4e21a12435301e9b9", "name": "Crashtest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-crashtest-bm54-tests1-linux-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-432", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373118}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372162, "job_guid": "e0a08fe87b83f6fd25d5bec66e35c9cac86f7513", "name": "Reftest Unaccelerated", "reference_data_name": "WINNT 6.2 mozilla-release opt test reftest-no-accel", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-reftest-no-accel-bm69-tests1-windows-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-051", "reason": "scheduler", "result": "success", "job_symbol": "Ru", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373198}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372162, "job_guid": "7e5870d57ec8cda306c76ff7441ab887eb1498ff", "name": "XPCShellTest", "reference_data_name": "WINNT 6.2 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-xpcshell-bm69-tests1-windows-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-037", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374070}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372162, "job_guid": "ba85c0f9aaf70a7bbcf134fbecf353ddb9e8bff5", "name": "Reftest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-reftest-bm72-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-047", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373279}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372163, "job_guid": "ae14ed7004fa882e07dcf572af0e43a5846156b7", "name": "Mochitest Browser Chrome", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-browser-chrome-bm70-tests1-windows-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-046", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374158}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372165, "job_guid": "9eeb194505517ee60fc88d5c66cc9ce0c724d24d", "name": "Reftest", "reference_data_name": "WINNT 6.2 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-reftest-bm70-tests1-windows-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-027", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373232}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372179, "job_guid": "fd1df87e758daa135cfc7bef230af8a9b5e46adf", "name": "Marionette Framework Unit Tests", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-marionette-bm52-tests1-linux-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-076", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372598}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372238, "job_guid": "168864788cc87a818497062a5295ba9a43669c57", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-2-bm51-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-131", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374534}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372242, "job_guid": "1c6faa0fa3962ec007dc5aee6996a1715b635d1c", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-5-bm68-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-339", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373236}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372260, "job_guid": "86d185e6b1e12e3e0aaa62def67cf4b232c6481b", "name": "XPCShellTest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-xpcshell-bm53-tests1-linux-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-440", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374043}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372275, "job_guid": "91f4b7937f0aaa429b8093d4e3bab7f8606850f8", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-3-bm68-tests1-linux-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-311", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374396}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372280, "job_guid": "17f7a202ebc35e2b3a540a51e6b1fa0839a99cf5", "name": "Reftest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-reftest-bm54-tests1-linux-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-330", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384375515}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372295, "job_guid": "230e774d16261b268879518255c25729b8b89c73", "name": "Jetpack SDK Test", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-jetpack-bm53-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-350", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373804}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372298, "job_guid": "553344086986cc124b3ea16cda036c166e4051e2", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-1-bm54-tests1-linux-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-313", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375436}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372157, "start_timestamp": 1384372305, "job_guid": "73ab88cc17c2402c02d270b671a1894219307a05", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384366603/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm54-tests1-linux-build14.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-326", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384373683}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372157, "start_timestamp": 1384372341, "job_guid": "1683a5708d4099923c9f64b22d3aa80edcccd3a3", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384366603/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm52-tests1-linux-build15.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-023", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373268}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372521, "job_guid": "cbf26a16986d1f85b77b5345c6e48ab1b246046c", "name": "Talos dromaeojs", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos dromaeojs", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-dromaeojs-bm67-tests1-linux-build0.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-028", "reason": "scheduler", "result": "success", "job_symbol": "d", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384374028}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372524, "job_guid": "ce54dcab904ec23d826bdf165fb2fcbfd810fc19", "name": "Talos other", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-other-bm67-tests1-linux-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-040", "reason": "scheduler", "result": "success", "job_symbol": "o", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373074}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372524, "job_guid": "219617b941a6f539c5870c98033341d56d203035", "name": "Talos tp", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos tp5o", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-tp5o-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-041", "reason": "scheduler", "result": "success", "job_symbol": "tp", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373377}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372525, "job_guid": "7b9ece08d2da851261c2ede806fd9ab074607c86", "name": "Talos chrome", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos chromez", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-chromez-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-033", "reason": "scheduler", "result": "success", "job_symbol": "c", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373458}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372527, "job_guid": "b04826f12a395ab7f2b493dd85f69677ec9db474", "name": "Talos svg", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos svgr", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-svgr-bm67-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-017", "reason": "scheduler", "result": "success", "job_symbol": "s", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373852}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372575, "job_guid": "eca79b982e3865fd17827d7e230d14acf1a08286", "name": "Crashtest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-crashtest-bm54-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-449", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373021}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372577, "job_guid": "df66f9b6a5119ce261ec0c8486ee6af456894b82", "name": "Talos svg", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos svgr", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-svgr-bm67-tests1-linux-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-008", "reason": "scheduler", "result": "success", "job_symbol": "s", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373800}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372578, "job_guid": "ae35564d41a3018c1b2698550feca4ce5704e6a5", "name": "Talos tp", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos tp5o", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-tp5o-bm67-tests1-linux-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-048", "reason": "scheduler", "result": "success", "job_symbol": "tp", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373397}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372578, "job_guid": "6787ddce74f8e59eae3c22665815c4d3a33bc014", "name": "Talos other", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-other-bm67-tests1-linux-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-040", "reason": "scheduler", "result": "success", "job_symbol": "o", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373101}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372579, "job_guid": "e9258bcf9c6a0ca634026a162817f5324d36d47f", "name": "Talos chrome", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos chromez", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-chromez-bm51-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-049", "reason": "scheduler", "result": "success", "job_symbol": "c", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373493}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372579, "job_guid": "7e8a193e0bb45e4da3c098da4cd8ac11f3e421f7", "name": "Talos dromaeojs", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos dromaeojs", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-dromaeojs-bm67-tests1-linux-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-006", "reason": "scheduler", "result": "success", "job_symbol": "d", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384374077}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372587, "job_guid": "52c961c073d09b9cb9b2947e011922aa77a9b788", "name": "XPCShellTest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-xpcshell-bm68-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-367", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373635}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372614, "job_guid": "2fa23ed4c89a849ad723959122ce8d390555b270", "name": "Reftest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-reftest-bm68-tests1-linux-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-319", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374956}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372628, "job_guid": "43226b027648199e64ae1bdc834bb8773210ca06", "name": "XPCShellTest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-xpcshell-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-145", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374240}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372638, "job_guid": "e328d18c6ac6a8ad8f0f946ee093cfc9765a69b7", "name": "Mochitest Browser Chrome", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-browser-chrome-bm54-tests1-linux-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-359", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375650}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372642, "job_guid": "32e51d3d60f6856ced68802be12f5225139d4033", "name": "JSReftest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-jsreftest-bm53-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-383", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373602}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372656, "job_guid": "4839801c281dbff2cd91821c4665e632f7e2d6bd", "name": "Mochitest Browser Chrome", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-browser-chrome-bm54-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-364", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375017}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372659, "job_guid": "5d5f50593bc89f5110fa3c3a55b8fbcb471b8a34", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-4-bm53-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-397", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373235}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372687, "job_guid": "e2d61d802a450b563416a3e64fb9df795361a7cf", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-2-bm51-tests1-linux-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-075", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373301}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372693, "job_guid": "9e27582a8aa2af3b34a656b3f69b9a54833c4e9e", "name": "Mochitest Other", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-other-bm54-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-439", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373782}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372716, "job_guid": "74d949776b4c6ef830733a7315497b557790f175", "name": "Crashtest-IPC", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test crashtest-ipc", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-crashtest-ipc-bm52-tests1-linux-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-101", "reason": "scheduler", "result": "success", "job_symbol": "Cipc", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373359}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372722, "job_guid": "845701fc74f2e92ef8d9d42c4f2e81cf74b14b84", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-5-bm54-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-396", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373307}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372723, "job_guid": "38f81bd697f7e7ef2e260dbb4d36fe300138e7a9", "name": "Reftest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-reftest-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-060", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384377004}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372725, "job_guid": "3e88c780965544dcce3c34016a1b1e242efa6ecc", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-5-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-051", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373582}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372730, "job_guid": "3af9a5948ca97178b6f1e8a7203af7dc0dc0965d", "name": "Crashtest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-crashtest-bm67-tests1-linux-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-054", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373282}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372734, "job_guid": "c10751f48db43e9aff8305b5f1bbb1a6f5a756e0", "name": "Reftest Unaccelerated", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test reftest-no-accel", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-reftest-no-accel-bm67-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-144", "reason": "scheduler", "result": "success", "job_symbol": "Ru", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384376960}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372736, "job_guid": "077d66f684deec2c0b09ca2513a844697da5e496", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-3-bm54-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-362", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373994}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372738, "job_guid": "2e287ca025933fb10fbc63403f9820cb11b232ed", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-1-bm52-tests1-linux-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-070", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374699}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372740, "job_guid": "a409fbd1e46bbac2eec3753886ddef0edbdcd0a4", "name": "Jetpack SDK Test", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-jetpack-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-096", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373467}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372787, "job_guid": "3f1fe418e30864f3844ef391ad8fb01220b2553f", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-3-bm52-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-143", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374318}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372790, "job_guid": "66524f62950e26b097fbeb9fd73224d84d838b2e", "name": "Jetpack SDK Test", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-jetpack-bm52-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-081", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373541}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372792, "job_guid": "1d17d4242039301b2a23aac35fc65363f6caec56", "name": "Mochitest Other", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-other-bm53-tests1-linux-build2.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-335", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374130}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372795, "job_guid": "1a2085ae67d1c7ead4812e9ea1b52bbfb6f1c28c", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-2-bm51-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-109", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373452}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372797, "job_guid": "bd3996c4502e953e62e6e38a6c5b735366aa33fc", "name": "JSReftest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-jsreftest-bm51-tests1-linux-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-021", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374217}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372798, "job_guid": "bf9ee3c5f4835ec982a88dae008ac34d2fa895d5", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-1-bm51-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-071", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375238}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372803, "job_guid": "2a336f975cca4b6b17090f1d788628482e8eea15", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-4-bm67-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-096", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373459}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372804, "job_guid": "ea0f1370a6d124702b9f58f0ddb3407988e57e50", "name": "Reftest-IPC", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test reftest-ipc", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-reftest-ipc-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-009", "reason": "scheduler", "result": "success", "job_symbol": "Ripc", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373041}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372817, "start_timestamp": 1384372821, "job_guid": "14504da88ea03aa81ed5a64f49d12de21a05c63e", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384367508/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm52-tests1-linux-build16.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-133", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373796}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372817, "start_timestamp": 1384372830, "job_guid": "0152d23023685b67dcfeb3ab023788da77b8451b", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384367508/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm52-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-071", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384374273}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372939, "job_guid": "c9d81f169c34f5dbc7fa547966e1f91d6f1e8941", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-2-bm73-tests1-windows-build14.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-023", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373990}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372940, "job_guid": "e5e908cc658dccfa81ec0c515d87d910a8a06d51", "name": "XPCShellTest", "reference_data_name": "WINNT 6.2 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-xpcshell-bm73-tests1-windows-build14.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-109", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374965}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372940, "job_guid": "b3ec8edf06eb7aee04bd533c936522da124e7aaf", "name": "JSReftest", "reference_data_name": "WINNT 6.2 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-jsreftest-bm73-tests1-windows-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-073", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374549}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372940, "job_guid": "47c5f3e0955542c05f40f338063743b77c9f0b07", "name": "Mochitest Other", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-other-bm73-tests1-windows-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-056", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374633}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372940, "job_guid": "2fcd9dc43d6864977960ee944328ef5324de5cc9", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-4-bm73-tests1-windows-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-028", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373518}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "25529ca418c0530a9681d06f519dc130cfaa180a", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-2-bm73-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-018", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373922}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "41bf85d791aa463803ecf3a4d30a6f21523f2ffe", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-1-bm73-tests1-windows-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-105", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375216}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "d6a3d39ac688316fe0be205488d7ba7f05ecc111", "name": "Reftest", "reference_data_name": "WINNT 6.2 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-reftest-bm73-tests1-windows-build15.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-041", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384375255}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "d6e91ea52f8e368ce292bf2e2e873abba189cdc8", "name": "XPCShellTest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-xpcshell-bm73-tests1-windows-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-082", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374199}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "2629de99fa7f44b30cee5149bcb617994833aacb", "name": "JSReftest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-jsreftest-bm72-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-012", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374546}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "b1afb82fd386ebba79a4d196fbb72e4acd6630f5", "name": "Jetpack SDK Test", "reference_data_name": "Windows XP 32-bit mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-jetpack-bm73-tests1-windows-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-115", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374175}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "4ed913057d105c87d1a66b43783acba4cc60a8c0", "name": "JSReftest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-jsreftest-bm73-tests1-windows-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-104", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374539}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "489efe10464104ab058ffe46b39c0b808a8339fe", "name": "Mochitest Other", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-other-bm72-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-031", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374541}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "36ff579e6680fe193dc90fc6d9bb8d510d3e4f02", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-4-bm72-tests1-windows-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-022", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373492}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "e3681da4841bd6f9d855dc9007bbf63acdaa559e", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-5-bm73-tests1-windows-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-099", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373825}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "8102380bd98776d5510c2b5a36076d274899aee8", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-3-bm73-tests1-windows-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-104", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374950}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "22d60285dbab8e0a31eb04df80a2c0b3752a5c1c", "name": "Reftest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-reftest-bm73-tests1-windows-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-084", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384375222}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "74b7a632d701a695743d19dbc84851beb9ffa24d", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-1-bm73-tests1-windows-build13.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-122", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375261}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "74ee51ab4d8d5bccb9a9c8e3b0e2587d1035859f", "name": "Jetpack SDK Test", "reference_data_name": "WINNT 6.2 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-jetpack-bm73-tests1-windows-build13.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-066", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374368}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "76005a321ad5f7cfae8da8ec6a9e8c1f166e71c5", "name": "Mochitest Other", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-other-bm72-tests1-windows-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-014", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374662}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "387d9b566545825bdc15f300feb489fe8e5af553", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-3-bm72-tests1-windows-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-040", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374734}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "680f5483293628f2ff85519dee8d18be55b7daa9", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-browser-chrome-bm73-tests1-windows-build13.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-100", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384377267}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "00cef349621159fac41fcf3e42e4c3849e9a6531", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-browser-chrome-bm72-tests1-windows-build3.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-060", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384377379}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "50af04346081089709244fc28616043d60dd4449", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-4-bm73-tests1-windows-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-088", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373572}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "d94bd0f873e24dac24f7255317902c8924bb0419", "name": "Crashtest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-crashtest-bm72-tests1-windows-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-029", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373691}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "202cc712ea32c1648effba08a2fe4d8dfbc9c0b7", "name": "Crashtest", "reference_data_name": "WINNT 6.2 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-crashtest-bm73-tests1-windows-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-005", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373668}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "805ddcc5002bfed2f1966674c9878276b6210c8e", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-5-bm73-tests1-windows-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-113", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373796}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "87a865e8a8f42ae1c6c700a27c60ca24da189b8e", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-3-bm73-tests1-windows-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-056", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374977}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "a3eb1d3ccd282020396498328779e4282856d455", "name": "Reftest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-reftest-bm73-tests1-windows-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-124", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384375406}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "7284fa20f3429957608184660b324f9f0b4990b9", "name": "Jetpack SDK Test", "reference_data_name": "Windows 7 32-bit mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-jetpack-bm73-tests1-windows-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-053", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374212}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372945, "job_guid": "6f8e4cb240c599b5451fdad65bc2afc2b9757d88", "name": "Crashtest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-crashtest-bm73-tests1-windows-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-090", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373621}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372945, "job_guid": "50c6b069b4f27641948d833dfeaf8ab474e17158", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-2-bm73-tests1-windows-build12.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-130", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373983}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372952, "job_guid": "2f3068f61823cd956c3321d38ef130d1176ee00e", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-5-bm71-tests1-windows-build11.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-097", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373743}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372953, "job_guid": "ece8ce7e58de5ba5c43970e489cf6583d661fabe", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-1-bm71-tests1-windows-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-009", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375126}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372955, "job_guid": "c2e0739e3f9d22d39ecb61f1c2a97734516a8621", "name": "XPCShellTest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-xpcshell-bm71-tests1-windows-build10.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-017", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373578}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373419, "job_guid": "fa88a8a4b104e937ba332875b14cec11040cbefb", "name": "Crashtest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-crashtest-bm67-tests1-linux-build7.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-054", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374977}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373448, "job_guid": "0f88ed4b5f268766dd144de63f68756a2fbb6d12", "name": "Jetpack SDK Test", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-jetpack-bm67-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-038", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384375376}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373492, "job_guid": "0eefaf6fe41e6d5fff5dde5e1f936d2a1a6f9bdc", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-5-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-101", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374850}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373552, "job_guid": "600017c6e4cf453bf7b58fbe2561ef02a958e34b", "name": "Marionette Framework Unit Tests", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-marionette-bm51-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-030", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373923}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373583, "job_guid": "6a2a3188576048d2330bd0f87faea779dbd5111b", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-4-bm67-tests1-linux-build9.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-096", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374710}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373593, "job_guid": "aa7c412a1a1aef16705e890d0ef8201634a2f6f6", "name": "XPCShellTest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-xpcshell-bm67-tests1-linux-build8.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-093", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384376184}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373607, "job_guid": "19779b8d5678326332df6824e3f3c912eafcade8", "name": "JSReftest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-jsreftest-bm52-tests1-linux-build4.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-068", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384376123}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373659, "job_guid": "ac41f5c76a144c45de25e380890101e4567a0d71", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-3-bm52-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-081", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384376238}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373676, "job_guid": "a34b25325628c7566769b07763111aad8b172cb6", "name": "Mochitest Other", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-other-bm68-tests1-linux-build5.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-382", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384376413}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373684, "job_guid": "7c4140d2509a5a9d36649277d4446ecb4a7fccf3", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-2-bm51-tests1-linux-build6.txt.gz", "name": "buildbot_text"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-055", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375223}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384353546, "start_timestamp": 1384353553, "job_guid": "f1c75261017c7c5ce3000931dce4c442fe0a1297", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384353546/b2g_mozilla-release_emulator-jb-debug_dep-bm62-build1-build17.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-132", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384364989}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384353546, "start_timestamp": 1384353555, "job_guid": "9abb6f7d54a49d763c584926377f09835c5e1a32", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384353546/b2g_mozilla-release_emulator-jb_dep-bm58-build1-build29.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-462", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384364662}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384356854, "start_timestamp": 1384356876, "job_guid": "d9cb3668f75f8f1b0b4ef503778ad0b90595a693", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384353545/mozilla-release_snowleopard-debug_test-mochitest-browser-chrome-bm76-tests1-macosx-build14.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-007", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363994}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384356854, "start_timestamp": 1384356880, "job_guid": "ab952a4bbbc74f1d9fb3cf536073b371029dbd02", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384353545/mozilla-release_lion-debug_test-mochitest-browser-chrome-bm76-tests1-macosx-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-011", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384364849}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"resultset_id": 1, "superseded": ["f1c75261017c7c5ce3000931dce4c442fe0a1297", "9abb6f7d54a49d763c584926377f09835c5e1a32", "ab952a4bbbc74f1d9fb3cf536073b371029dbd02"], "project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384358654, "start_timestamp": 1384358660, "job_guid": "5da36fb825bc52d13fed5b805d44015b0f2f2f16", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384353545/mozilla-release_win7-ix-debug_test-mochitest-browser-chrome-bm74-tests1-windows-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-117", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363533}, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384358653, "start_timestamp": 1384358664, "job_guid": "cf393ee59ed4d7302fe0bfbbe8988511b46b3379", "name": "Mochitest Browser Chrome", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384353545/mozilla-release_win8-debug_test-mochitest-browser-chrome-bm69-tests1-windows-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-043", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363625}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384358653, "start_timestamp": 1384358665, "job_guid": "2914b818e425ad17dfe1a06cd7d0edd7cca4717a", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384353545/mozilla-release_xp-ix-debug_test-mochitest-browser-chrome-bm69-tests1-windows-build13.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-081", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363103}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358798, "job_guid": "f2702654e8169714bc8298e7a036e357fdba8f73", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384358790/b2g_mozilla-release_inari_dep-bm57-build1-build17.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-004", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384365240}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358800, "job_guid": "eea35c369c7a4914baea4216d04def59f6ea2a26", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384358790/b2g_mozilla-release_emulator-jb-debug_dep-bm57-build1-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-117", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384370888}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358801, "job_guid": "197eea8827f6c72f2727c41508dceb5ddcf95b66", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384358790/b2g_mozilla-release_nexus-4_dep-bm57-build1-build20.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-020", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384366248}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358801, "job_guid": "3f317a2869250b7f85876ac0cdc885923897ded2", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384358790/b2g_mozilla-release_emulator-debug_dep-bm57-build1-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-169", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384366258}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "66196b3a00613cbfdce94d19abcf1e1b1920d23c", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384358790/b2g_mozilla-release_hamachi_dep-bm61-build1-build20.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-067", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384365020}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "418c120f51dcdf4c2166c8621e69e450dfc068c0", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384358790/b2g_mozilla-release_unagi_dep-bm61-build1-build21.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-199", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384365992}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "d067152b725dd39fab7040a5813f5fad39638d2d", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384358790/b2g_mozilla-release_emulator_dep-bm84-build1-build1.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-027", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384366027}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "d089a64346a9a8f3c06fd0f5df6bb90023069cea", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384358790/b2g_mozilla-release_helix_dep-bm82-build1-build0.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-008", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384364297}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "da9e2cb9511e574521654d10f98d82aa8f8f8673", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384358790/b2g_mozilla-release_leo_dep-bm82-build1-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-019", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384364591}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358831, "job_guid": "d6cd47d87aeca666fbf9ea1e4422d9935fc305da", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384358790/b2g_mozilla-release_hamachi_eng_dep-bm65-build1-build24.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-475", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384365137}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384358953, "start_timestamp": 1384358958, "job_guid": "02d01930adcfaca9c2d00876fa3b6fe7d3fa5400", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev3 Fedora 12x64 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384353545/mozilla-release_fedora64-debug_test-mochitest-browser-chrome-bm52-tests1-linux-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-fedora64-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-r3-fed64-047", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384364572}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384359260, "start_timestamp": 1384359261, "job_guid": "c095b0a8541e8317959e722604d8d314bb8876e3", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev3 Fedora 12 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384353545/mozilla-release_fedora-debug_test-mochitest-browser-chrome-bm54-tests1-linux-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-fedora-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-r3-fed-071", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384365815}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384359260, "start_timestamp": 1384359289, "job_guid": "d365591b84cba5801971d812390985dff8a95b39", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384353545/mozilla-release_ubuntu32_vm-debug_test-mochitest-1-bm51-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-030", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384363562}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384359260, "start_timestamp": 1384359293, "job_guid": "c7cc67ad1fc88df1b4d129511e515ef253ffd402", "name": "Reftest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384353545/mozilla-release_ubuntu32_vm-debug_test-reftest-bm67-tests1-linux-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-011", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384365488}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363320, "start_timestamp": 1384363321, "job_guid": "88b64ce5a69f27d8528b7ef9e7b7683c942edc60", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384358790/b2g_mozilla-release_emulator-jb_dep-bm85-build1-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-018", "reason": "Self-serve: Rebuilt by ryanvm@gmail.com", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384371295}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384363754, "start_timestamp": 1384363764, "job_guid": "bf82ac43a95eb48b7fec8ed9d583c63deba47e82", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384358790/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm51-tests1-linux-build37.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-014", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384364680}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384363754, "start_timestamp": 1384363770, "job_guid": "c0c0c1bfe777a45700218186f020363b513d65c9", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384358790/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-070", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384365120}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363894, "job_guid": "e4b68da60b511cada9e3e113a530a4f15691aabf", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384363890/b2g_mozilla-release_emulator-jb_dep-bm85-build1-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-007", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373222}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363894, "job_guid": "029a67049ad5acfa87fb2963ce12ac464b315d7f", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384363890/b2g_mozilla-release_leo_dep-bm85-build1-build0.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-030", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384370564}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363905, "job_guid": "cf955463e9e240110b9006e26138654261de592f", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384363890/b2g_mozilla-release_emulator-jb-debug_dep-bm63-build1-build23.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-088", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384375379}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363910, "job_guid": "762a0395eb90d279896a60af66760948ef778c0f", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384363890/b2g_mozilla-release_hamachi_dep-bm82-build1-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-015", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384369129}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363912, "job_guid": "8e9d00f5877cf4affedd6b20bbab8f256252fae3", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384363890/b2g_mozilla-release_unagi_dep-bm61-build1-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-131", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384370000}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "7b22625a0492a9f89b0cb0cb0105aed6ccb0e3cd", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384363890/b2g_mozilla-release_helix_dep-bm86-build1-build0.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-028", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384371149}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "fd7d498ad2de6b1605c3a478e61080d7830158eb", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384363890/b2g_mozilla-release_nexus-4_dep-bm86-build1-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-033", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384371245}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "640aa817f5248f4db81c64fb43f666df454800c4", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384363890/b2g_mozilla-release_inari_dep-bm64-build1-build25.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-457", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384370162}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "4a91706ef9cb406f5364754fcfefa953c1d0b327", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384363890/b2g_mozilla-release_emulator-debug_dep-bm86-build1-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-012", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384370242}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363923, "job_guid": "d71af093f00f97e752accbbf7916fb49e30ea9e7", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384363890/b2g_mozilla-release_hamachi_eng_dep-bm64-build1-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-344", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384369973}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363923, "job_guid": "6ff5576451c16d382f5159f60ae7726f7dd34364", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384363890/b2g_mozilla-release_emulator_dep-bm64-build1-build26.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-354", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384370465}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364494, "job_guid": "8dc0ef35aa38e9c4397e18d3193544267ef54aed", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384364489/b2g_mozilla-release_hamachi_eng_dep-bm84-build1-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-035", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384370626}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364494, "job_guid": "fee06deb99c38d10fa7592a0eb05bf41cdb3f685", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384364489/b2g_mozilla-release_helix_dep-bm84-build1-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-032", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384370942}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364495, "job_guid": "a6fac5b7ac420496ab593d44f00594c65d11d4ab", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384364489/b2g_mozilla-release_emulator-debug_dep-bm84-build1-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-006", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384371153}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364495, "job_guid": "bb0d9c35af106ada7dd2da14e6c4613be343775b", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384364489/b2g_mozilla-release_leo_dep-bm84-build1-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-037", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384371292}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364505, "job_guid": "8bac3f4654d57f8eb15dc85034c41b1e0f9e0e1e", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384364489/b2g_mozilla-release_emulator-jb_dep-bm63-build1-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-022", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384376096}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364512, "job_guid": "8fd74233724900662e03984c6d913807508597fe", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384364489/b2g_mozilla-release_unagi_dep-bm61-build1-build23.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-159", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384371182}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364531, "job_guid": "ef3c1c359e44d27972cc833469b64990ee6bedeb", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384364489/b2g_mozilla-release_inari_dep-bm65-build1-build24.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-471", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384371120}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364533, "job_guid": "9298fafb5cb2a20835451fffb6f2dc3b6a065333", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384364489/b2g_mozilla-release_nexus-4_dep-bm58-build1-build16.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-430", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384371546}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364533, "job_guid": "1e54f7dc9c67d644061be30d41ba89452f1fd94a", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384364489/b2g_mozilla-release_emulator-jb-debug_dep-bm62-build1-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-053", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384375870}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364534, "job_guid": "6b1441fac7fa9b05ff20e0ad22157199dc7675e1", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384364489/b2g_mozilla-release_hamachi_dep-bm58-build1-build17.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-419", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384371273}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364534, "job_guid": "7be5f3ce34a67238d0a54b24f8484d1cfd1270ee", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384364489/b2g_mozilla-release_emulator_dep-bm58-build1-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-441", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384371422}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365390, "job_guid": "e8027a571320e3c81feb2f869ccb7bfb2498e2d5", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384365389/b2g_mozilla-release_emulator-jb_dep-bm86-build1-build1.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-013", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384374937}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365391, "job_guid": "edef5d7ef58c3e9c7750765e217d52b6d382c9dd", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384365389/b2g_mozilla-release_emulator_dep-bm65-build1-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-475", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384372135}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365391, "job_guid": "6fbf86ed6ab2d0736a30680bed4f6f6f3c0c8c63", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384365389/b2g_mozilla-release_unagi_dep-bm65-build1-build26.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-329", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384372359}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365412, "job_guid": "c446b15a60cd6f24209e9757544693c2a249b8b4", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384365389/b2g_mozilla-release_hamachi_dep-bm61-build1-build21.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-067", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384366589}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365412, "job_guid": "dc9a8b88da133d5dfa6fe445488361c4615d9694", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384365389/b2g_mozilla-release_nexus-4_dep-bm82-build1-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-019", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384371760}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365420, "job_guid": "d7bc254e9f3091b5adad0a857472feba39b333fb", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384365389/b2g_mozilla-release_inari_dep-bm57-build1-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-068", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384371469}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365433, "job_guid": "5b685dcf4a6263e679acc4ca90093adfe9390ac8", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384365389/b2g_mozilla-release_hamachi_eng_dep-bm62-build1-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-132", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384371426}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365433, "job_guid": "84d04f66cd2d9442b38a63fd1298e6044efa9881", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384365389/b2g_mozilla-release_emulator-debug_dep-bm58-build1-build20.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-462", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373089}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365571, "job_guid": "3432cd8c502ff37737c27569f251218f0a10d3ef", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384365389/b2g_mozilla-release_leo_dep-bm64-build1-build24.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-319", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384371980}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365584, "job_guid": "f31e5524235d6428dfbd5223bb5dd7f4d3dc549e", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384365389/b2g_mozilla-release_helix_dep-bm57-build1-build19.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-114", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384372038}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384365997, "job_guid": "0b6dccf64241b0a331ea62e79d816deb4980bd7c", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb/1384365990/b2g_mozilla-release_emulator-jb_dep-bm61-build1-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-187", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384377210}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366043, "job_guid": "6fbdedaa266efac01132ef46dd446080ea9ae6ef", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384365990/b2g_mozilla-release_helix_dep-bm61-build1-build21.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-199", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384372756}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366057, "job_guid": "5ce54665d443edc2b8572e347de42632e0bc8273", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384365990/b2g_mozilla-release_unagi_dep-bm84-build1-build1.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ix-027", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384372987}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366116, "job_guid": "fcbe5f0a1631c39a783a4388e97616a5462b5e88", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384365990/b2g_mozilla-release_hamachi_eng_dep-bm61-build1-build19.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-076", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384372365}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366193, "job_guid": "6c7ce8d04cf225d363dbe6a119f1645885e168bf", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384365990/b2g_mozilla-release_inari_dep-bm57-build1-build19.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-061", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384372394}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366195, "job_guid": "160f687ba793208ce24d3c7ef5833684d01f3f06", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384365990/b2g_mozilla-release_emulator_dep-bm63-build1-build23.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-021", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384372969}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366196, "job_guid": "fb0f79e4fa832de68e391d673cb99c65d2e22712", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384365990/b2g_mozilla-release_emulator-debug_dep-bm57-build1-build19.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-163", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373573}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366199, "job_guid": "997d69db9a264372b2bae34d113dce320f1c02d9", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384365990/b2g_mozilla-release_nexus-4_dep-bm61-build1-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-100", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384373412}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366208, "job_guid": "e027e926c37b0b8a65cbbced72b7bae9e74c0243", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384365990/b2g_mozilla-release_leo_dep-bm57-build1-build13.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-102", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384373439}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366248, "job_guid": "e2f44911df5a493d26873aa95b6349bec242f69f", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384365990/b2g_mozilla-release_hamachi_dep-bm58-build1-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-423", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384372284}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366612, "job_guid": "7069f711266b7c7bf9d68764a632b4640786be22", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-jb-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-jb-debug/1384366603/b2g_mozilla-release_emulator-jb-debug_dep-bm82-build1-build1.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-jb", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-centos6-hp-017", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384376996}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366618, "job_guid": "9fab649685fdacf97919fca9cb5c8bc2411f5a8d", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384366603/b2g_mozilla-release_hamachi_dep-bm61-build1-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-107", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384371962}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366630, "job_guid": "f97ca2acd7a5356c74bc5e44fc5f6efb14b778bc", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384366603/b2g_mozilla-release_nexus-4_dep-bm65-build1-build17.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-400", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384374223}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366631, "job_guid": "112fe90234d6bf31bd30b0106b0d61b2e50dc252", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384366603/b2g_mozilla-release_leo_dep-bm65-build1-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-403", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384373097}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366634, "job_guid": "a1e0678857da80262615533483b10f4e81a95e55", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384366603/b2g_mozilla-release_emulator-debug_dep-bm62-build1-build19.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-057", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373859}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366647, "job_guid": "37246dcb41a859440bc8ee67fbfe652abfcdc5f5", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384366603/b2g_mozilla-release_unagi_dep-bm57-build1-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-169", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384372653}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366647, "job_guid": "7f0faa2fad265d059beb19697dc31b41d4b86a17", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384366603/b2g_mozilla-release_emulator_dep-bm57-build1-build15.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-109", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373325}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366850, "job_guid": "2892e823506fc0c9243e547796b0ad5b5e9faad7", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384366603/b2g_mozilla-release_helix_dep-bm57-build1-build20.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-028", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384373117}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366870, "job_guid": "a27abd8ffd3c695fb0c95b598ab8af9d203a7997", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384366603/b2g_mozilla-release_hamachi_eng_dep-bm61-build1-build20.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-175", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384373167}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366931, "job_guid": "fe27632e59c7f1df3cf8453647b210a45a4825fe", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384366603/b2g_mozilla-release_inari_dep-bm64-build1-build26.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-455", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384372931}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367721, "job_guid": "955d841b82f384e8cd183b3ec9b25a86a67768ab", "name": "Unagi Device Image Build", "reference_data_name": "b2g_mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-unagi/1384367508/b2g_mozilla-release_unagi_dep-bm65-build1-build27.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-477", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "b2g", "end_timestamp": 1384374671}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367792, "job_guid": "f96127cb4fe53669064f2516a59f55f08e6afdfe", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator-debug/1384367508/b2g_mozilla-release_emulator-debug_dep-bm64-build1-build25.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-306", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384375191}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367793, "job_guid": "29647ce479a2eba6a1a1273b866b8262ff1e0e5c", "name": "Helix Device Image Build", "reference_data_name": "b2g_mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-helix/1384367508/b2g_mozilla-release_helix_dep-bm58-build1-build30.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-302", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "b2g", "end_timestamp": 1384374180}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367797, "job_guid": "c3599febefed92e844c1e6d91caae073f4aaa352", "name": "Inari Device Image Build", "reference_data_name": "b2g_mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-inari/1384367508/b2g_mozilla-release_inari_dep-bm64-build1-build27.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-370", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "b2g", "end_timestamp": 1384374093}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367797, "job_guid": "747c45a8c18b672e411506bc352e73df94e3898a", "name": "B2G Emulator Image Build", "reference_data_name": "b2g_mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-emulator/1384367508/b2g_mozilla-release_emulator_dep-bm64-build1-build27.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-emu-ics", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-468", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "b2g", "end_timestamp": 1384374278}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367798, "job_guid": "12f8bdddd5381217f3b64a49d5358b68bd959706", "name": "Leo Device Image Build", "reference_data_name": "b2g_mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-leo/1384367508/b2g_mozilla-release_leo_dep-bm64-build1-build25.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-479", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "b2g", "end_timestamp": 1384374051}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367798, "job_guid": "eec5154a01048ad2c7b46e201e7c3f8e3fd9b5f4", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "b2g_mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi_eng/1384367508/b2g_mozilla-release_hamachi_eng_dep-bm64-build1-build23.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-304", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384374295}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367802, "job_guid": "977e434e6b172d88a87284f6dd4ebf7171f52994", "name": "Nexus 4 Device Image Build", "reference_data_name": "b2g_mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-nexus-4/1384367508/b2g_mozilla-release_nexus-4_dep-bm64-build1-build29.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-326", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "b2g", "end_timestamp": 1384375157}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367803, "job_guid": "baad3525cd5bec48c997b2ce23812c8e8ccb1cc7", "name": "Hamachi Device Image Build", "reference_data_name": "b2g_mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-hamachi/1384367508/b2g_mozilla-release_hamachi_dep-bm64-build1-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "b2g_mozilla-release-b2g", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-device-image", "os_name": "b2g", "architecture": "x86"}, "machine": "bld-linux64-ec2-448", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "b2g", "end_timestamp": 1384373832}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367836, "start_timestamp": 1384367838, "job_guid": "91952e70a2d4bacee6a9074a4a660e78fbbfe006", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384363890/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm52-tests1-linux-build14.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-089", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384368794}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367836, "start_timestamp": 1384367838, "job_guid": "3bc00a63f22f13ee61696cdcd8eabc184172f56b", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384363890/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm67-tests1-linux-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-042", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384369226}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367957, "start_timestamp": 1384367960, "job_guid": "1293510622e77a1454be3b4ea70b09464a2a68a1", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384364489/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm53-tests1-linux-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-312", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384369353}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367957, "start_timestamp": 1384367960, "job_guid": "ceadb36844677d753f2c2842ab7347ee28a9aec7", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384364489/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm53-tests1-linux-build35.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-393", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384368866}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369280, "job_guid": "6a03d5a75347ecc9675e37125d79a5d741198896", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-4-bm79-tests1-macosx-build15.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-027", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370027}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369280, "job_guid": "a5bab0a005bcc3a42edb8df8fe0405fd7a8b874d", "name": "XPCShellTest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-xpcshell-bm79-tests1-macosx-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-012", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384370673}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369280, "job_guid": "5bdbdb3c1d952a712f6086a05c9c5b45e8828bd2", "name": "JSReftest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-jsreftest-bm75-tests1-macosx-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-090", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370977}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369280, "job_guid": "11eeb61b768de42b22209262c7cfaf3bd81d4ebd", "name": "Mochitest Other", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-other-bm79-tests1-macosx-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-019", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371409}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "a8a81cfcfdb6dcf407dce0f9b4d64d990801342c", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-2-bm79-tests1-macosx-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-071", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370610}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "f6d2139352f71b12b5046f76b94996f5b72b31a6", "name": "Jetpack SDK Test", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-jetpack-bm79-tests1-macosx-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-016", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371240}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "2d6681d84bc4c35a83316305c63064c6fe003023", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-browser-chrome-bm79-tests1-macosx-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-049", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384376482}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "719316831115bb176201dde3ddff8f7f0669fccf", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-3-bm79-tests1-macosx-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-044", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371553}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "e5adb6e36623eff3f823b0fe5658d58491e64659", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-3-bm75-tests1-macosx-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-041", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371737}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "44b2692c45d1e683daf8da4fd5ee15679cc8af7d", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-browser-chrome-bm79-tests1-macosx-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-061", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384377339}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369281, "job_guid": "b369b0febff2508fbb1e12a5f8edc2726bdbddb5", "name": "Crashtest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-crashtest-bm79-tests1-macosx-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-068", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370195}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "2a87d077878e6f85fd7c9402449dc479b9fd6eee", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-4-bm79-tests1-macosx-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-040", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370036}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "e2848ccd900f6eae4c7ab3c6a67011c25ca4403b", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-5-bm79-tests1-macosx-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-074", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370381}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "a251f8daea5b70e09ea3a7721dbf8e891b3dde6b", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-5-bm79-tests1-macosx-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-060", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370426}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "d12403f04b4a0f48bb5b535a2259758c4a19042a", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-1-bm79-tests1-macosx-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-048", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372256}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "94897be5c1c091a1f3d5cc395b259c90229660b9", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-2-bm79-tests1-macosx-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-021", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370511}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369282, "job_guid": "f78405ffbb85e6213ae433a8a0991025f8fb4f0e", "name": "XPCShellTest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-xpcshell-bm75-tests1-macosx-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-059", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384370617}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "ca1e0423bb96f7793c443508db7ea6f03c6dec00", "name": "JSReftest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-jsreftest-bm75-tests1-macosx-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-052", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370860}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "1e5cb2597b8a8b6c210f2d57058365003fe74996", "name": "Jetpack SDK Test", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-jetpack-bm79-tests1-macosx-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-070", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371438}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "ea00d44b1989ced494f2dcf0024fe0d06bcd0fc0", "name": "Mochitest Other", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-mochitest-other-bm79-tests1-macosx-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-001", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371591}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "4f2cc9aca0190855b11dbcf9a52ee99f7c00dece", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-mochitest-1-bm79-tests1-macosx-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-033", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372183}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "9b60e8a601d4909be5d1ba171e93a78026dfe7cf", "name": "Marionette Framework Unit Tests", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-marionette-bm79-tests1-macosx-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-038", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384369700}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369283, "job_guid": "19c761572ce04ee527dbc93873086148e10dd53e", "name": "Reftest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_lion-debug_test-reftest-bm79-tests1-macosx-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-009", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372565}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369284, "job_guid": "8c89e8965dc52efd837c0bf78c310c4a78eb72b5", "name": "Marionette Framework Unit Tests", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-marionette-bm79-tests1-macosx-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-040", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384369634}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369284, "job_guid": "ac7f6310e2b0352b298367464600521f573f8c3f", "name": "Crashtest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-crashtest-bm79-tests1-macosx-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-060", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370138}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369284, "job_guid": "a0059c6c1545a3802699a4132c891f5a7d681351", "name": "Reftest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_snowleopard-debug_test-reftest-bm79-tests1-macosx-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-058", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372500}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369285, "job_guid": "0d33d20f24c178b74d88adce58f42f08674ea107", "name": "Marionette Framework Unit Tests", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-marionette-bm77-tests1-macosx-build16.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-083", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384369622}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369286, "job_guid": "ac9ed2cf223b20cc01bc64659d41f1df59867020", "name": "XPCShellTest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-xpcshell-bm80-tests1-macosx-build14.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-042", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384369974}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369286, "job_guid": "24df0f6a8c2e333863f65bd1935778d78493e9c2", "name": "Mochitest Other", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-other-bm77-tests1-macosx-build21.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-056", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370994}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "fc63edc1bc64b89c050c474b62e6f9cbaf06df29", "name": "Jetpack SDK Test", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-jetpack-bm77-tests1-macosx-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-029", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384370843}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "34a9ff06125225d6b42fd190aa12b2bbeb2d1bac", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-3-bm80-tests1-macosx-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-085", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371187}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "1b9dd7054199393aa480414777b48b2083d10544", "name": "Crashtest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-crashtest-bm80-tests1-macosx-build20.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-076", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370000}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "88f467d34c8e5825972d1cc308149e8a3cd9ba24", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-5-bm80-tests1-macosx-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-003", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370119}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369287, "job_guid": "337a0d95845bee5a925aafbb4e993f9783640b68", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-2-bm80-tests1-macosx-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-058", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384370329}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369288, "job_guid": "af0c1da66b23746a13d7cb96972e95a036d87b33", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-4-bm80-tests1-macosx-build23.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-012", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384369899}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369288, "job_guid": "cadb6d0755c620aaa6188d4dbe205cba551f8929", "name": "Reftest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-reftest-bm80-tests1-macosx-build20.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-080", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371617}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369288, "job_guid": "62334d0ff13fff28b2dbebed6daa804520bb54d5", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-1-bm80-tests1-macosx-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-007", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371661}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369288, "job_guid": "0126cef2d82f6a7d24e606e3ad6a49db08766f54", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-mochitest-browser-chrome-bm80-tests1-macosx-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-025", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375353}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384369273, "start_timestamp": 1384369289, "job_guid": "8832e1ee705c7c86be1f50973646ee0a7ec3fd5b", "name": "JSReftest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64-debug/1384367505/mozilla-release_mountainlion-debug_test-jsreftest-bm80-tests1-macosx-build20.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-mountainlion-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-008", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384370723}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384370777, "start_timestamp": 1384370782, "job_guid": "53028b7b1ffb251fda504d5ecb4b0505ed307bf0", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384365389/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm53-tests1-linux-build36.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-417", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384371684}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384370777, "start_timestamp": 1384370782, "job_guid": "8fc2d79c8ed75b798ca9a9b0fec7909aeee1cab9", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384365389/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm53-tests1-linux-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-350", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384372179}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371017, "job_guid": "a9da9d4899c9fce349db0c9eb35471705198836a", "name": "JSReftest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-jsreftest-bm80-tests1-macosx-build29.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-084", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371633}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371017, "job_guid": "3acd021fbba297eb542d68c7584211406e0f2c11", "name": "Mochitest Other", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-other-bm80-tests1-macosx-build31.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-024", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371907}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371017, "job_guid": "741490f5f6408c8992608aabf4ba771cfb54acb6", "name": "Crashtest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-crashtest-bm80-tests1-macosx-build22.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-076", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371445}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "744280702c778ec9526e39755ac155d63b963663", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-4-bm80-tests1-macosx-build21.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-058", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371372}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "55e6c23ff89ce3c9a5b7d72e90389afd6810998b", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-2-bm80-tests1-macosx-build28.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-082", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371541}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "2a28e91c714b93b46180ad8b94e82d6149231dea", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-browser-chrome-bm80-tests1-macosx-build26.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-074", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372641}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "5ed98bf1f2b13d8717304ff478653e34fdc59c4c", "name": "Jetpack SDK Test", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-jetpack-bm80-tests1-macosx-build23.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-044", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371592}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371018, "job_guid": "8b64c3db69ef11020ee461c87b3b1f22ae4b7796", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-3-bm80-tests1-macosx-build21.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-031", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372038}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371019, "job_guid": "bd52cc6e7bb5c3d9909f2af92749789a6d40714a", "name": "XPCShellTest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-xpcshell-bm80-tests1-macosx-build18.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-037", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371621}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371019, "job_guid": "9d1f6fad38fbb034ec75bb15260953242ff9a55f", "name": "Reftest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-reftest-bm80-tests1-macosx-build26.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-022", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372119}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371019, "job_guid": "e01c5a3ba66a88e4fb0fd715c0c25c80290a8003", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-1-bm80-tests1-macosx-build25.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-011", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372323}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371014, "start_timestamp": 1384371019, "job_guid": "6ef18c12f07310526b89899000803d2222b91a5e", "name": "Mochitest", "reference_data_name": "Rev5 MacOSX Mountain Lion 10.8 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_mountainlion_test-mochitest-5-bm80-tests1-macosx-build35.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-mountainlion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-8", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-mtnlion-r5-077", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371463}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371024, "job_guid": "2d479b57bcd818537429c2cdbaf895d30e001755", "name": "Jetpack SDK Test", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-jetpack-bm75-tests1-macosx-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-052", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371713}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371025, "job_guid": "35c0b15d21c55756b4e55d4237add3522f61a326", "name": "Crashtest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-crashtest-bm75-tests1-macosx-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-064", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371523}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371026, "job_guid": "df38b7c187388fdfe3f46da4206bf52447d4440f", "name": "XPCShellTest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-xpcshell-bm75-tests1-macosx-build17.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-059", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371749}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371026, "job_guid": "d242ff753275f50cd9a9718918ad07f9c6ed68df", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-3-bm75-tests1-macosx-build14.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-015", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372152}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371027, "job_guid": "e7ead06cb2ea42db21d242e18f3af8b546158e3a", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-3-bm75-tests1-macosx-build15.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-024", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372143}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371027, "job_guid": "0b5f5b9c6668562dc6e5cdf1ad405b6054733a24", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-2-bm75-tests1-macosx-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-065", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371537}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371028, "job_guid": "a61936d29ba401c04c255a54bc9e246bc44082c0", "name": "Reftest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-reftest-bm75-tests1-macosx-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-014", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372769}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371029, "job_guid": "d86347d984cba1286f92fcc8b245118a34d96e9a", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-2-bm75-tests1-macosx-build17.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-055", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371564}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371029, "job_guid": "55112a1073669c8d978483dc2d1ecb4bf83eec50", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-5-bm75-tests1-macosx-build17.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-061", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371548}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371030, "job_guid": "e00396d23cde8da728f46a4c167938e34252049a", "name": "Reftest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-reftest-bm75-tests1-macosx-build17.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-011", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372787}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371030, "job_guid": "21be75daf17f21ac1c7110efa9d2fc998f67a34e", "name": "JSReftest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-jsreftest-bm75-tests1-macosx-build16.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-032", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371690}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371035, "job_guid": "28ffa0893ce881258303cce0badb21093ceb2721", "name": "Mochitest Other", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-other-bm79-tests1-macosx-build13.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-021", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371953}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371035, "job_guid": "712218e9194d36c394f05ec43ec3c3e437242eaf", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-1-bm79-tests1-macosx-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-074", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372503}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371035, "job_guid": "f3841b09f2611724d8060864e0ebf11b8c3ec4ab", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-5-bm79-tests1-macosx-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-071", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371540}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371035, "job_guid": "61067d70aca2f7bec6fa44476171190415271306", "name": "Crashtest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-crashtest-bm79-tests1-macosx-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-074", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371545}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "a870c332e2f2b3b06eb73540fa58c5ba0ca28961", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-4-bm76-tests1-macosx-build15.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-067", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371402}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "4b18d3d8a196e25daaea0c7c24f4e3bd7fc8f49f", "name": "Jetpack SDK Test", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-jetpack-bm79-tests1-macosx-build16.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-089", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371702}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "7d0b2d2de9dc38c05563648c69577d8e5f40f597", "name": "XPCShellTest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-xpcshell-bm79-tests1-macosx-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-063", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371740}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "62e2456334025bbccc49270fbd96a13cf674a98a", "name": "Mochitest Other", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-other-bm79-tests1-macosx-build14.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-060", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371938}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "64d3dc13bbd2fc1026688cde5f5d7cea48a784a1", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-1-bm79-tests1-macosx-build15.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-012", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372528}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371036, "job_guid": "f50e19808ca86af064f2f462c45b63c20714b1d1", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Snow Leopard 10.6 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_snowleopard_test-mochitest-browser-chrome-bm79-tests1-macosx-build14.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-6", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-snow-013", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373171}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371038, "job_guid": "e436459b57433aa923a1562d68eec1406d299600", "name": "Mochitest Browser Chrome", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-browser-chrome-bm76-tests1-macosx-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-032", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373149}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371039, "job_guid": "edab19788ff46467ce85101d5000907994a7276a", "name": "JSReftest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-jsreftest-bm76-tests1-macosx-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-027", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384371730}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384371013, "start_timestamp": 1384371040, "job_guid": "d71ff62c4cb3b845f6b02834a5fa43c2403a6ec1", "name": "Mochitest", "reference_data_name": "Rev4 MacOSX Lion 10.7 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-macosx64/1384367505/mozilla-release_lion_test-mochitest-4-bm76-tests1-macosx-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "osx-10-7", "os_name": "mac", "architecture": "x86_64"}, "machine": "talos-r4-lion-008", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384371391}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384371138, "start_timestamp": 1384371140, "job_guid": "45a36c12fd02528e5bd7171f05003c568700a080", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384365990/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm54-tests1-linux-build25.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-432", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384372056}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384371138, "start_timestamp": 1384371141, "job_guid": "e0b112594343e9e9b980072d2189ebdaaec4173b", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384365990/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm54-tests1-linux-build13.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-439", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384372550}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372155, "job_guid": "93a7962f0a848275f45be2306fd909a9a1fc7aa2", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-4-bm54-tests1-linux-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-369", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373088}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372155, "job_guid": "644b3682aafe0ff7d7e12b7ccace7de1f76aff48", "name": "JSReftest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-jsreftest-bm54-tests1-linux-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-spot-470", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373979}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372156, "job_guid": "9fc4720b7e8cec90bf900c992ae0e0f3b22730f7", "name": "Crashtest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-crashtest-bm72-tests1-windows-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-120", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372542}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372156, "job_guid": "724ad9f2eadeed2ff6becb4f9ad4e06ffd2cd9b4", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-2-bm71-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-117", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372808}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "551797e8e9c167a65f1fa338054a62e3dd61bac2", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-4-bm72-tests1-windows-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-025", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372557}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "2c24258eda3072d5f8f35880f0619d548397f025", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-5-bm72-tests1-windows-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-022", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372607}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "9ff6457eceaca40b5601272e4cb9d5be23c08119", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-5-bm69-tests1-windows-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-021", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372647}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "dd26cd82fe58c8c1d79ceff5e6b70a52f3a144de", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-2-bm72-tests1-windows-build1.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-029", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372657}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "665a54569114b17babe117935b62f7ed043a71dc", "name": "Crashtest", "reference_data_name": "WINNT 6.2 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-crashtest-bm72-tests1-windows-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-092", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372895}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372157, "job_guid": "88d9dba0529c75aa404a961bda7a6f2089b18ee5", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-3-bm72-tests1-windows-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-083", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373484}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "0cff35ba20ad05fd0bc4398a33388e1bf17e0551", "name": "Mochitest Other", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-other-bm51-tests1-linux-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-146", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374156}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "6375e3aad3da188ded20810fb05f25c731c7f10c", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-3-bm72-tests1-windows-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-113", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373478}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "f8f8e3874266187c768a1062abfa39e8f294272b", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-1-bm72-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-035", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373594}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "175c4ebfcbb795f064d19a6181fdf55a447cf8f7", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-4-bm71-tests1-windows-build1.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-073", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372549}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "9430c0cbeebc4eebc14c32546e3a04cdc84a2eca", "name": "Jetpack SDK Test", "reference_data_name": "Windows XP 32-bit mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-jetpack-bm72-tests1-windows-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-040", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372736}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "1786cc0dc6d09af27eac984c0a6d18dd1a0a4c04", "name": "Reftest Unaccelerated", "reference_data_name": "Windows 7 32-bit mozilla-release opt test reftest-no-accel", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-reftest-no-accel-bm72-tests1-windows-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-096", "reason": "scheduler", "result": "success", "job_symbol": "Ru", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373136}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372158, "job_guid": "96afdd6895ba1631c3e537eac9d7120ffd00bcf7", "name": "XPCShellTest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-xpcshell-bm72-tests1-windows-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-077", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373266}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "7d375c5330edc3e28788cc98f4c2019e12830b5f", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-2-bm72-tests1-windows-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-012", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372745}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "04f98cd7fc1140ea6f145b96db1422c1ac354946", "name": "Jetpack SDK Test", "reference_data_name": "Windows 7 32-bit mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-jetpack-bm69-tests1-windows-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-052", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372851}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "32dbeb2be813335b4c78db50af3ad0b6d7c4bfa1", "name": "JSReftest", "reference_data_name": "WINNT 6.2 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-jsreftest-bm71-tests1-windows-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-085", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372862}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "fadf060ad6cd073314df74894925084f08770347", "name": "JSReftest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-jsreftest-bm72-tests1-windows-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-055", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372882}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "9d9c5bbc5ab84de4e4b7f512a4c1866054477486", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-3-bm72-tests1-windows-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-067", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373260}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372159, "job_guid": "186c4caa94328226a610eee12c771d549122442a", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-1-bm72-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-083", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373501}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "ca7333bee025e33e37feefa17488a9648dd8fe3a", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-browser-chrome-bm72-tests1-windows-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-127", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374328}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "cadfae60182f3ca548c1901a64a6e187f36ba93a", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-4-bm71-tests1-windows-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-057", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372509}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "ad11bcd621002a6d634ac0a9faf90ec12dba59c6", "name": "Jetpack SDK Test", "reference_data_name": "WINNT 6.2 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-jetpack-bm71-tests1-windows-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-058", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372960}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "706252ef8c63222a75e3b240d5501fff2b8a14ea", "name": "Mochitest Other", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-other-bm72-tests1-windows-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-044", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373010}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "b65c1aa751fba21ad9791f5cab38146f76b2680b", "name": "Mochitest Other", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-other-bm72-tests1-windows-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-098", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373070}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372160, "job_guid": "426ed14dfd21f55e229077b7c1b06c038803afdc", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows XP 32-bit mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-mochitest-browser-chrome-bm72-tests1-windows-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-078", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373758}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "3b01772c0d50e45116fa420dfffe7663923569a5", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-mochitest-1-bm72-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-018", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373585}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "9189f4c23774773c9fd734d3f1ac96bc71919aeb", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-5-bm69-tests1-windows-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-115", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384372662}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "58dfa5e23b01dbd9503ca8797f30753b8f24e041", "name": "Crashtest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-crashtest-bm72-tests1-windows-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-060", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372681}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "0f086fa197ae8e6fe08d181e09d6b56f8fd6aa53", "name": "XPCShellTest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-xpcshell-bm72-tests1-windows-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-060", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372688}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "43f04318bac0e53e840fb2448d08107c543f20f7", "name": "JSReftest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-jsreftest-bm72-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-129", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384372798}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "f45a6928398f1a675e42a5c0b223b4345a9600d8", "name": "Mochitest Other", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-other-bm71-tests1-windows-build1.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-006", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373137}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372161, "job_guid": "5b1952f37314113dabbb010c70413fb2e9e6a0ea", "name": "Reftest", "reference_data_name": "Windows XP 32-bit mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_xp-ix_test-reftest-bm72-tests1-windows-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-xp-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-038", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373170}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372162, "job_guid": "13560436f5bc52fb150458a4e21a12435301e9b9", "name": "Crashtest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-crashtest-bm54-tests1-linux-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-432", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373118}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372162, "job_guid": "e0a08fe87b83f6fd25d5bec66e35c9cac86f7513", "name": "Reftest Unaccelerated", "reference_data_name": "WINNT 6.2 mozilla-release opt test reftest-no-accel", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-reftest-no-accel-bm69-tests1-windows-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-051", "reason": "scheduler", "result": "success", "job_symbol": "Ru", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373198}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372162, "job_guid": "7e5870d57ec8cda306c76ff7441ab887eb1498ff", "name": "XPCShellTest", "reference_data_name": "WINNT 6.2 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-xpcshell-bm69-tests1-windows-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-037", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374070}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372162, "job_guid": "ba85c0f9aaf70a7bbcf134fbecf353ddb9e8bff5", "name": "Reftest", "reference_data_name": "Windows 7 32-bit mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win7-ix_test-reftest-bm72-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win7-ix-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-047", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373279}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372163, "job_guid": "ae14ed7004fa882e07dcf572af0e43a5846156b7", "name": "Mochitest Browser Chrome", "reference_data_name": "WINNT 6.2 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-mochitest-browser-chrome-bm70-tests1-windows-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-046", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374158}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372165, "job_guid": "9eeb194505517ee60fc88d5c66cc9ce0c724d24d", "name": "Reftest", "reference_data_name": "WINNT 6.2 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32/1384367505/mozilla-release_win8_test-reftest-bm70-tests1-windows-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-win8-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-027", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373232}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372179, "job_guid": "fd1df87e758daa135cfc7bef230af8a9b5e46adf", "name": "Marionette Framework Unit Tests", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-marionette-bm52-tests1-linux-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-076", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372598}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372238, "job_guid": "168864788cc87a818497062a5295ba9a43669c57", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-2-bm51-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-131", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374534}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372242, "job_guid": "1c6faa0fa3962ec007dc5aee6996a1715b635d1c", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-5-bm68-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-339", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373236}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372260, "job_guid": "86d185e6b1e12e3e0aaa62def67cf4b232c6481b", "name": "XPCShellTest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-xpcshell-bm53-tests1-linux-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-440", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374043}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372275, "job_guid": "91f4b7937f0aaa429b8093d4e3bab7f8606850f8", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-3-bm68-tests1-linux-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-311", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374396}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372280, "job_guid": "17f7a202ebc35e2b3a540a51e6b1fa0839a99cf5", "name": "Reftest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-reftest-bm54-tests1-linux-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-330", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384375515}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372295, "job_guid": "230e774d16261b268879518255c25729b8b89c73", "name": "Jetpack SDK Test", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-jetpack-bm53-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-350", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373804}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372154, "start_timestamp": 1384372298, "job_guid": "553344086986cc124b3ea16cda036c166e4051e2", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64-debug/1384367505/mozilla-release_ubuntu64_vm-debug_test-mochitest-1-bm54-tests1-linux-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu64_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-313", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375436}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372157, "start_timestamp": 1384372305, "job_guid": "73ab88cc17c2402c02d270b671a1894219307a05", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384366603/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm54-tests1-linux-build14.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-326", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384373683}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372157, "start_timestamp": 1384372341, "job_guid": "1683a5708d4099923c9f64b22d3aa80edcccd3a3", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384366603/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm52-tests1-linux-build15.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-023", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373268}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372521, "job_guid": "cbf26a16986d1f85b77b5345c6e48ab1b246046c", "name": "Talos dromaeojs", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos dromaeojs", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-dromaeojs-bm67-tests1-linux-build0.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-028", "reason": "scheduler", "result": "success", "job_symbol": "d", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384374028}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372524, "job_guid": "ce54dcab904ec23d826bdf165fb2fcbfd810fc19", "name": "Talos other", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-other-bm67-tests1-linux-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-040", "reason": "scheduler", "result": "success", "job_symbol": "o", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373074}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372524, "job_guid": "219617b941a6f539c5870c98033341d56d203035", "name": "Talos tp", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos tp5o", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-tp5o-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-041", "reason": "scheduler", "result": "success", "job_symbol": "tp", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373377}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372525, "job_guid": "7b9ece08d2da851261c2ede806fd9ab074607c86", "name": "Talos chrome", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos chromez", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-chromez-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-033", "reason": "scheduler", "result": "success", "job_symbol": "c", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373458}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372520, "start_timestamp": 1384372527, "job_guid": "b04826f12a395ab7f2b493dd85f69677ec9db474", "name": "Talos svg", "reference_data_name": "Ubuntu HW 12.04 mozilla-release talos svgr", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_hw_test-svgr-bm67-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "talos-linux32-ix-017", "reason": "scheduler", "result": "success", "job_symbol": "s", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373852}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372575, "job_guid": "eca79b982e3865fd17827d7e230d14acf1a08286", "name": "Crashtest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-crashtest-bm54-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-449", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373021}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372577, "job_guid": "df66f9b6a5119ce261ec0c8486ee6af456894b82", "name": "Talos svg", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos svgr", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-svgr-bm67-tests1-linux-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-008", "reason": "scheduler", "result": "success", "job_symbol": "s", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373800}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372578, "job_guid": "ae35564d41a3018c1b2698550feca4ce5704e6a5", "name": "Talos tp", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos tp5o", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-tp5o-bm67-tests1-linux-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-048", "reason": "scheduler", "result": "success", "job_symbol": "tp", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373397}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372578, "job_guid": "6787ddce74f8e59eae3c22665815c4d3a33bc014", "name": "Talos other", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-other-bm67-tests1-linux-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-040", "reason": "scheduler", "result": "success", "job_symbol": "o", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373101}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372579, "job_guid": "e9258bcf9c6a0ca634026a162817f5324d36d47f", "name": "Talos chrome", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos chromez", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-chromez-bm51-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-049", "reason": "scheduler", "result": "success", "job_symbol": "c", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384373493}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372573, "start_timestamp": 1384372579, "job_guid": "7e8a193e0bb45e4da3c098da4cd8ac11f3e421f7", "name": "Talos dromaeojs", "reference_data_name": "Ubuntu HW 12.04 x64 mozilla-release talos dromaeojs", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_hw_test-dromaeojs-bm67-tests1-linux-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-linux64-talos", "group_symbol": "T", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "talos-linux64-ix-006", "reason": "scheduler", "result": "success", "job_symbol": "d", "group_name": "Talos Performance", "product_name": "firefox", "end_timestamp": 1384374077}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372587, "job_guid": "52c961c073d09b9cb9b2947e011922aa77a9b788", "name": "XPCShellTest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-xpcshell-bm68-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-367", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373635}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372614, "job_guid": "2fa23ed4c89a849ad723959122ce8d390555b270", "name": "Reftest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-reftest-bm68-tests1-linux-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-319", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374956}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372628, "job_guid": "43226b027648199e64ae1bdc834bb8773210ca06", "name": "XPCShellTest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-xpcshell-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-145", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374240}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372638, "job_guid": "e328d18c6ac6a8ad8f0f946ee093cfc9765a69b7", "name": "Mochitest Browser Chrome", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-browser-chrome-bm54-tests1-linux-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-359", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375650}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372642, "job_guid": "32e51d3d60f6856ced68802be12f5225139d4033", "name": "JSReftest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-jsreftest-bm53-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-383", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373602}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372656, "job_guid": "4839801c281dbff2cd91821c4665e632f7e2d6bd", "name": "Mochitest Browser Chrome", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-browser-chrome-bm54-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-364", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375017}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372659, "job_guid": "5d5f50593bc89f5110fa3c3a55b8fbcb471b8a34", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-4-bm53-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-397", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373235}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372687, "job_guid": "e2d61d802a450b563416a3e64fb9df795361a7cf", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-2-bm51-tests1-linux-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-075", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373301}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372693, "job_guid": "9e27582a8aa2af3b34a656b3f69b9a54833c4e9e", "name": "Mochitest Other", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-other-bm54-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-439", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373782}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372716, "job_guid": "74d949776b4c6ef830733a7315497b557790f175", "name": "Crashtest-IPC", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test crashtest-ipc", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-crashtest-ipc-bm52-tests1-linux-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-101", "reason": "scheduler", "result": "success", "job_symbol": "Cipc", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373359}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372722, "job_guid": "845701fc74f2e92ef8d9d42c4f2e81cf74b14b84", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-5-bm54-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-396", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373307}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372723, "job_guid": "38f81bd697f7e7ef2e260dbb4d36fe300138e7a9", "name": "Reftest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-reftest-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-060", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384377004}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372725, "job_guid": "3e88c780965544dcce3c34016a1b1e242efa6ecc", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-5-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-051", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373582}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372730, "job_guid": "3af9a5948ca97178b6f1e8a7203af7dc0dc0965d", "name": "Crashtest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-crashtest-bm67-tests1-linux-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-054", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373282}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372734, "job_guid": "c10751f48db43e9aff8305b5f1bbb1a6f5a756e0", "name": "Reftest Unaccelerated", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test reftest-no-accel", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-reftest-no-accel-bm67-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-144", "reason": "scheduler", "result": "success", "job_symbol": "Ru", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384376960}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372736, "job_guid": "077d66f684deec2c0b09ca2513a844697da5e496", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-3-bm54-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-362", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373994}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372738, "job_guid": "2e287ca025933fb10fbc63403f9820cb11b232ed", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-mochitest-1-bm52-tests1-linux-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-070", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374699}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372572, "start_timestamp": 1384372740, "job_guid": "a409fbd1e46bbac2eec3753886ddef0edbdcd0a4", "name": "Jetpack SDK Test", "reference_data_name": "Ubuntu VM 12.04 x64 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux64/1384367505/mozilla-release_ubuntu64_vm_test-jetpack-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-096", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373467}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372787, "job_guid": "3f1fe418e30864f3844ef391ad8fb01220b2553f", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-3-bm52-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-143", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374318}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372790, "job_guid": "66524f62950e26b097fbeb9fd73224d84d838b2e", "name": "Jetpack SDK Test", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-jetpack-bm52-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-081", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373541}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372792, "job_guid": "1d17d4242039301b2a23aac35fc65363f6caec56", "name": "Mochitest Other", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-other-bm53-tests1-linux-build2.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-335", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374130}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372795, "job_guid": "1a2085ae67d1c7ead4812e9ea1b52bbfb6f1c28c", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-2-bm51-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-109", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373452}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372797, "job_guid": "bd3996c4502e953e62e6e38a6c5b735366aa33fc", "name": "JSReftest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-jsreftest-bm51-tests1-linux-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-021", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374217}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372798, "job_guid": "bf9ee3c5f4835ec982a88dae008ac34d2fa895d5", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-1-bm51-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-071", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375238}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372803, "job_guid": "2a336f975cca4b6b17090f1d788628482e8eea15", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-mochitest-4-bm67-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-096", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373459}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384372517, "start_timestamp": 1384372804, "job_guid": "ea0f1370a6d124702b9f58f0ddb3407988e57e50", "name": "Reftest-IPC", "reference_data_name": "Ubuntu VM 12.04 mozilla-release opt test reftest-ipc", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux/1384367505/mozilla-release_ubuntu32_vm_test-reftest-ipc-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu32_vm-opt-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-009", "reason": "scheduler", "result": "success", "job_symbol": "Ripc", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373041}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372817, "start_timestamp": 1384372821, "job_guid": "14504da88ea03aa81ed5a64f49d12de21a05c63e", "name": "Gaia UI Test", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384367508/mozilla-release_ubuntu64_vm-b2gdt_test-gaia-ui-test-bm52-tests1-linux-build16.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-133", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "b2g", "end_timestamp": 1384373796}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372817, "start_timestamp": 1384372830, "job_guid": "0152d23023685b67dcfeb3ab023788da77b8451b", "name": "Mochitest", "reference_data_name": "b2g_ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/b2g/tinderbox-builds/mozilla-release-linux64_gecko/1384367508/mozilla-release_ubuntu64_vm-b2gdt_test-mochitest-1-bm52-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-b2gdt-opt-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "b2g-linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "tst-linux64-ec2-071", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "b2g", "end_timestamp": 1384374273}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372939, "job_guid": "c9d81f169c34f5dbc7fa547966e1f91d6f1e8941", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-2-bm73-tests1-windows-build14.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-023", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373990}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372940, "job_guid": "e5e908cc658dccfa81ec0c515d87d910a8a06d51", "name": "XPCShellTest", "reference_data_name": "WINNT 6.2 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-xpcshell-bm73-tests1-windows-build14.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-109", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374965}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372940, "job_guid": "b3ec8edf06eb7aee04bd533c936522da124e7aaf", "name": "JSReftest", "reference_data_name": "WINNT 6.2 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-jsreftest-bm73-tests1-windows-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-073", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374549}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372940, "job_guid": "47c5f3e0955542c05f40f338063743b77c9f0b07", "name": "Mochitest Other", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-other-bm73-tests1-windows-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-056", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374633}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372940, "job_guid": "2fcd9dc43d6864977960ee944328ef5324de5cc9", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-4-bm73-tests1-windows-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-028", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373518}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "25529ca418c0530a9681d06f519dc130cfaa180a", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-2-bm73-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-018", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373922}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "41bf85d791aa463803ecf3a4d30a6f21523f2ffe", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-1-bm73-tests1-windows-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-105", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375216}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "d6a3d39ac688316fe0be205488d7ba7f05ecc111", "name": "Reftest", "reference_data_name": "WINNT 6.2 mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-reftest-bm73-tests1-windows-build15.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-041", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384375255}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "d6e91ea52f8e368ce292bf2e2e873abba189cdc8", "name": "XPCShellTest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-xpcshell-bm73-tests1-windows-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-082", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374199}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372941, "job_guid": "2629de99fa7f44b30cee5149bcb617994833aacb", "name": "JSReftest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-jsreftest-bm72-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-012", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374546}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "b1afb82fd386ebba79a4d196fbb72e4acd6630f5", "name": "Jetpack SDK Test", "reference_data_name": "Windows XP 32-bit mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-jetpack-bm73-tests1-windows-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-115", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374175}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "4ed913057d105c87d1a66b43783acba4cc60a8c0", "name": "JSReftest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-jsreftest-bm73-tests1-windows-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-104", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374539}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "489efe10464104ab058ffe46b39c0b808a8339fe", "name": "Mochitest Other", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-other-bm72-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-031", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374541}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "36ff579e6680fe193dc90fc6d9bb8d510d3e4f02", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-4-bm72-tests1-windows-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-022", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373492}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "e3681da4841bd6f9d855dc9007bbf63acdaa559e", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-5-bm73-tests1-windows-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-099", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373825}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "8102380bd98776d5510c2b5a36076d274899aee8", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-3-bm73-tests1-windows-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-104", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374950}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372942, "job_guid": "22d60285dbab8e0a31eb04df80a2c0b3752a5c1c", "name": "Reftest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-reftest-bm73-tests1-windows-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-084", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384375222}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "74b7a632d701a695743d19dbc84851beb9ffa24d", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-1-bm73-tests1-windows-build13.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-122", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375261}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "74ee51ab4d8d5bccb9a9c8e3b0e2587d1035859f", "name": "Jetpack SDK Test", "reference_data_name": "WINNT 6.2 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-jetpack-bm73-tests1-windows-build13.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-066", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374368}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "76005a321ad5f7cfae8da8ec6a9e8c1f166e71c5", "name": "Mochitest Other", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-other-bm72-tests1-windows-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-014", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374662}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "387d9b566545825bdc15f300feb489fe8e5af553", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-3-bm72-tests1-windows-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-040", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374734}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "680f5483293628f2ff85519dee8d18be55b7daa9", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-browser-chrome-bm73-tests1-windows-build13.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-100", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384377267}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "00cef349621159fac41fcf3e42e4c3849e9a6531", "name": "Mochitest Browser Chrome", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-browser-chrome", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-browser-chrome-bm72-tests1-windows-build3.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-060", "reason": "scheduler", "result": "success", "job_symbol": "bc", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384377379}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "50af04346081089709244fc28616043d60dd4449", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-4-bm73-tests1-windows-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-088", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373572}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372943, "job_guid": "d94bd0f873e24dac24f7255317902c8924bb0419", "name": "Crashtest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-crashtest-bm72-tests1-windows-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-029", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373691}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "202cc712ea32c1648effba08a2fe4d8dfbc9c0b7", "name": "Crashtest", "reference_data_name": "WINNT 6.2 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-crashtest-bm73-tests1-windows-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-005", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373668}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "805ddcc5002bfed2f1966674c9878276b6210c8e", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-5-bm73-tests1-windows-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-113", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373796}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "87a865e8a8f42ae1c6c700a27c60ca24da189b8e", "name": "Mochitest", "reference_data_name": "WINNT 6.2 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win8-debug_test-mochitest-3-bm73-tests1-windows-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win8-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows8-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w864-ix-056", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374977}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "a3eb1d3ccd282020396498328779e4282856d455", "name": "Reftest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test reftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-reftest-bm73-tests1-windows-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-124", "reason": "scheduler", "result": "success", "job_symbol": "R", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384375406}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372944, "job_guid": "7284fa20f3429957608184660b324f9f0b4990b9", "name": "Jetpack SDK Test", "reference_data_name": "Windows 7 32-bit mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-jetpack-bm73-tests1-windows-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-053", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374212}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372945, "job_guid": "6f8e4cb240c599b5451fdad65bc2afc2b9757d88", "name": "Crashtest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-crashtest-bm73-tests1-windows-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-090", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384373621}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372945, "job_guid": "50c6b069b4f27641948d833dfeaf8ab474e17158", "name": "Mochitest", "reference_data_name": "Windows 7 32-bit mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_win7-ix-debug_test-mochitest-2-bm73-tests1-windows-build12.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-win7-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windows7-32", "os_name": "win", "architecture": "x86"}, "machine": "t-w732-ix-130", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373983}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372952, "job_guid": "2f3068f61823cd956c3321d38ef130d1176ee00e", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-5-bm71-tests1-windows-build11.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-097", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373743}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372953, "job_guid": "ece8ce7e58de5ba5c43970e489cf6583d661fabe", "name": "Mochitest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-mochitest-1-bm71-tests1-windows-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-009", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375126}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1384372936, "start_timestamp": 1384372955, "job_guid": "c2e0739e3f9d22d39ecb61f1c2a97734516a8621", "name": "XPCShellTest", "reference_data_name": "Windows XP 32-bit mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-win32-debug/1384367505/mozilla-release_xp-ix-debug_test-xpcshell-bm71-tests1-windows-build10.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-xp-ix-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "windowsxp", "os_name": "win", "architecture": "x86"}, "machine": "t-xp32-ix-017", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373578}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373419, "job_guid": "fa88a8a4b104e937ba332875b14cec11040cbefb", "name": "Crashtest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test crashtest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-crashtest-bm67-tests1-linux-build7.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-054", "reason": "scheduler", "result": "success", "job_symbol": "C", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384374977}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373448, "job_guid": "0f88ed4b5f268766dd144de63f68756a2fbb6d12", "name": "Jetpack SDK Test", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test jetpack", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-jetpack-bm67-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-038", "reason": "scheduler", "result": "success", "job_symbol": "JP", "group_name": null, "product_name": "firefox", "end_timestamp": 1384375376}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373492, "job_guid": "0eefaf6fe41e6d5fff5dde5e1f936d2a1a6f9bdc", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-5", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-5-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-101", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374850}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373552, "job_guid": "600017c6e4cf453bf7b58fbe2561ef02a958e34b", "name": "Marionette Framework Unit Tests", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test marionette", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-marionette-bm51-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-030", "reason": "scheduler", "result": "success", "job_symbol": "Mn", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373923}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373583, "job_guid": "6a2a3188576048d2330bd0f87faea779dbd5111b", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-4", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-4-bm67-tests1-linux-build9.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-096", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384374710}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373593, "job_guid": "aa7c412a1a1aef16705e890d0ef8201634a2f6f6", "name": "XPCShellTest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test xpcshell", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-xpcshell-bm67-tests1-linux-build8.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-093", "reason": "scheduler", "result": "success", "job_symbol": "X", "group_name": null, "product_name": "firefox", "end_timestamp": 1384376184}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373607, "job_guid": "19779b8d5678326332df6824e3f3c912eafcade8", "name": "JSReftest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test jsreftest", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-jsreftest-bm52-tests1-linux-build4.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-068", "reason": "scheduler", "result": "success", "job_symbol": "J", "group_name": "Reftest", "product_name": "firefox", "end_timestamp": 1384376123}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373659, "job_guid": "ac41f5c76a144c45de25e380890101e4567a0d71", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-3", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-3-bm52-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-081", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384376238}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373676, "job_guid": "a34b25325628c7566769b07763111aad8b172cb6", "name": "Mochitest Other", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-other", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-other-bm68-tests1-linux-build5.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-382", "reason": "scheduler", "result": "success", "job_symbol": "oth", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384376413}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384373414, "start_timestamp": 1384373684, "job_guid": "7c4140d2509a5a9d36649277d4446ecb4a7fccf3", "name": "Mochitest", "reference_data_name": "Ubuntu VM 12.04 mozilla-release debug test mochitest-2", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/firefox/tinderbox-builds/mozilla-release-linux-debug/1384367505/mozilla-release_ubuntu32_vm-debug_test-mochitest-2-bm51-tests1-linux-build6.txt.gz", "name": "builds-4h"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-ubuntu32_vm-debug-unittest", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux32", "os_name": "linux", "architecture": "x86"}, "machine": "tst-linux32-ec2-055", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384375223}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} diff --git a/tests/sample_data/pulse_consumer/job_data.json b/tests/sample_data/pulse_consumer/job_data.json index e070ae223..c690fb81f 100644 --- a/tests/sample_data/pulse_consumer/job_data.json +++ b/tests/sample_data/pulse_consumer/job_data.json @@ -194,51 +194,9 @@ "logs": [ { "url": "http://ftp.mozilla.org/pub/mozilla.org/spidermonkey/tinderbox-builds/mozilla-inbound-linux64/mozilla-inbound_linux64_spidermonkey-warnaserr-bm57-build1-build352.txt.gz", - "name": "builds-4h", - "steps": [ - { - "name": "downloading to oauth.txt", - "timeStarted": "2016-02-02T14:20:05-08:00", - "lineStarted": 231, - "lineFinished": 232, - "timeFinished": "2016-02-02T14:27:05-08:00", - "result": "success" - }, - { - "errors": [ - { - "line": "14:38:05 INFO - PROCESS | 16672 | [Child 17361] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-in-l64-000000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 1823", - "linenumber": 3211 - }, - { - "line": "14:38:05 INFO - TEST-UNEXPECTED-ERROR | tart | TIMEOUT: TART", - "linenumber": 3212 - }, - { - "line": "14:38:05 ERROR - Traceback (most recent call last):", - "linenumber": 3213 - } - ], - "name": "'/tools/buildbot/bin/python scripts/scripts/talos_script.py ...' failed", - "timeStarted": "2016-02-02T14:27:05-08:00", - "lineStarted": 234, - "lineFinished": 3269, - "timeFinished": "2016-02-02T14:38:09-08:00", - "result": "fail" - } - ], - "errorsTruncated": false + "name": "builds-4h" } - ], - "extra": { - "artifacts": [ - { - "blob": { "fee": "foo" }, - "type": "json", - "name": "Bug suggestions" - } - ] - } + ] }, { "taskId": "6c8cd566-df63-4102-a0bd-0603ddad8743/3", @@ -290,15 +248,6 @@ "url": "http://ftp.mozilla.org/pub/mozilla.org/spidermonkey/tinderbox-builds/mozilla-inbound-linux64/mozilla-inbound_linux64_spidermonkey-warnaserr-bm57-build1-build352.txt.gz", "name": "builds-4h" } - ], - "extra": { - "artifacts": [ - { - "blob": { "fee": "foo" }, - "type": "json", - "name": "quagmire" - } - ] - } + ] } ] diff --git a/tests/sample_data/pulse_consumer/taskcluster_transformed_jobs.json b/tests/sample_data/pulse_consumer/taskcluster_transformed_jobs.json index 4446fbdb0..6e26b7dc1 100644 --- a/tests/sample_data/pulse_consumer/taskcluster_transformed_jobs.json +++ b/tests/sample_data/pulse_consumer/taskcluster_transformed_jobs.json @@ -1,16 +1,6 @@ { "A35mWTRuQmyj88yMnIF0fA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "037e6659-346e-426c-a3f3-cc8c9c81747c/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -47,16 +37,6 @@ }, "A3dJ8bDIQRKzHiZBhM0c5Q": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "037749f1-b0c8-4112-b31e-264184cd1ce5/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -93,16 +73,6 @@ }, "A47ePPIaRFOWxw8oVOvmCA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "038ede3c-f21a-4453-96c7-0f2854ebe608/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -139,16 +109,6 @@ }, "A4AV9EXXREGCV-hVKT0blQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "038015f4-45d7-4441-8257-e855293d1b95/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -185,16 +145,6 @@ }, "ADfskOGaS7KUj0AuUb324A": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "0037ec90-e19a-4bb2-948f-402e51bdf6e0/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -231,16 +181,6 @@ }, "AcUWtRf7QB-4XQS8nSTilg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "01c516b5-17fb-401f-b85d-04bc9d24e296/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -277,16 +217,6 @@ }, "Ai-bmuTzS7eRBYFhSPnZ1w": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "022f9b9a-e4f3-4bb7-9105-816148f9d9d7/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -324,16 +254,6 @@ }, "AlcvKmrGS8e9FXrFTYnhpA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "02572f2a-6ac6-4bc7-bd15-7ac54d89e1a4/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -370,16 +290,6 @@ }, "ApotNgqaQh6OGDW8TMSWlQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "029a2d36-0a9a-421e-8e18-35bc4cc49695/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -416,16 +326,6 @@ }, "AqMhSaDqSAG7nfjfxjKLZA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "02a32149-a0ea-4801-bb9d-f8dfc6328b64/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -462,16 +362,6 @@ }, "AseHcKjPRhi-NBsvwH54gw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "02c78770-a8cf-4618-be34-1b2fc07e7883/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -508,16 +398,6 @@ }, "B3EheQ-IQ5aPzw34KS_a6g": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "07712179-0f88-4396-8fcf-0df8292fdaea/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -562,16 +442,6 @@ }, "BFqlkKMaTVqv3ROSlUT6kQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "045aa590-a31a-4d5a-afdd-13929544fa91/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -608,16 +478,6 @@ }, "BHejD_RvTW2HR2THXfwDAQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "0477a30f-f46f-4d6d-8747-64c75dfc0301/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -654,16 +514,6 @@ }, "BXWMaUV7TCunBcJQELbZqw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "05758c69-457b-4c2b-a705-c25010b6d9ab/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -700,16 +550,6 @@ }, "BZuYb2PTTQ-opGzxvZvA9A": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "059b986f-63d3-4d0f-a8a4-6cf1bd9bc0f4/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -746,16 +586,6 @@ }, "BdHfGUHPTLm0IKz47oNJlA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "05d1df19-41cf-4cb9-b420-acf8ee834994/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -792,16 +622,6 @@ }, "BdHy_4vQSA2ZQoxXc-6ieA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "05d1f2ff-8bd0-480d-9942-8c5773eea278/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -838,16 +658,6 @@ }, "BfEK00F_TSm20TD799GdMw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "05f10ad3-417f-4d29-b6d1-30fbf7d19d33/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -884,16 +694,6 @@ }, "Bg8h-Ct_SPSrEEYuvPAYSQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "060f21f8-2b7f-48f4-ab10-462ebcf01849/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -930,16 +730,6 @@ }, "BpnQqda2Q0izXw4k0RUT6w": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "0699d0a9-d6b6-4348-b35f-0e24d11513eb/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -976,16 +766,6 @@ }, "CBO2K8XGQEaNpX1BkwJmNw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "0813b62b-c5c6-4046-8da5-7d4193026637/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1022,16 +802,6 @@ }, "CER7YmG9QmCd-R66vfWkVQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "08447b62-61bd-4260-9df9-1ebabdf5a455/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1069,16 +839,6 @@ }, "DPCuZCk-SWC6SeftAbytzw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "0cf0ae64-293e-4960-ba49-e7ed01bcadcf/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1115,16 +875,6 @@ }, "D_6WScWhTLysuSIkbqfjsg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "0ffe9649-c5a1-4cbc-acb9-22246ea7e3b2/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1161,16 +911,6 @@ }, "DxhjVp-uQtGhRLm1w0xdiA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "0f186356-9fae-42d1-a144-b9b5c34c5d88/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1207,16 +947,6 @@ }, "ENXQRjSMRWyWK_zAEYEoXg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "10d5d046-348c-456c-962b-fcc01181285e/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1261,16 +991,6 @@ }, "EvNqsyBISNCH8mwfDVRnSQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "12f36ab3-2048-48d0-87f2-6c1f0d546749/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1308,16 +1028,6 @@ }, "F93bme7iSP2k0TsCwqSBVw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "17dddb99-eee2-48fd-a4d1-3b02c2a48157/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1354,16 +1064,6 @@ }, "FgjNkrvXS0WDDJJUpVXZsA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "1608cd92-bbd7-4b45-830c-9254a555d9b0/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1400,16 +1100,6 @@ }, "Fj3fDgrvRXitCVX2RiJUaw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "163ddf0e-0aef-4578-ad09-55f64622546b/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1446,16 +1136,6 @@ }, "FkHz3gGPSVmL6YJOupYBXw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "1641f3de-018f-4959-8be9-824eba96015f/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1492,16 +1172,6 @@ }, "FsgLMdKwRzWJAwUhYy2g0Q": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "16c80b31-d2b0-4735-8903-0521632da0d1/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1538,16 +1208,6 @@ }, "GTFxZJWzSKSNc_XElgtWHQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "19317164-95b3-48a4-8d73-f5c4960b561d/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1584,16 +1244,6 @@ }, "GWxTc8p_RUa5_Xo4RtMiCA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "196c5373-ca7f-4546-b9fd-7a3846d32208/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1638,16 +1288,6 @@ }, "HsvD9YlDQKaoP4AQsuGeJw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "1ecbc3f5-8943-40a6-a83f-8010b2e19e27/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1692,16 +1332,6 @@ }, "JKDqO-yySta79-Y92Dq2yQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "24a0ea3b-ecb2-4ad6-bbf7-e63dd83ab6c9/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1738,16 +1368,6 @@ }, "JM6eV6S-R5-Dy08gjoBHrQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "24ce9e57-a4be-479f-83cb-4f208e8047ad/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1784,16 +1404,6 @@ }, "K2IZ74mWQfiEn2U6XnVLPQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "2b6219ef-8996-41f8-849f-653a5e754b3d/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1830,16 +1440,6 @@ }, "K5R8rkgARZWMvH4JpmSPrQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "2b947cae-4800-4595-8cbc-7e09a6648fad/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1876,16 +1476,6 @@ }, "KYZKwkbvRc-qPE22g286yQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "29864ac2-46ef-45cf-aa3c-4db6836f3ac9/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1930,16 +1520,6 @@ }, "KnBj0KLcTjuyNaTxt5LVqw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "2a7063d0-a2dc-4e3b-b235-a4f1b792d5ab/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -1977,16 +1557,6 @@ }, "LBJoI2wUTNCteg-5CnaYZQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "2c126823-6c14-4cd0-ad7a-0fb90a769865/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2031,16 +1601,6 @@ }, "LWArw4t5QaCHiHsEJo6hFA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "2d602bc3-8b79-41a0-8788-7b04268ea114/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2078,16 +1638,6 @@ }, "MrYMxyDDSwWXJey-uo4T3g": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "32b60cc7-20c3-4b05-9725-ecbeba8e13de/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2132,16 +1682,6 @@ }, "NWz-q9MoSL-WMfO7kiwhtg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "356cfeab-d328-48bf-9631-f3bb922c21b6/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2178,16 +1718,6 @@ }, "OiZYxvi5RfKol0A4SBbvOw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "3a2658c6-f8b9-45f2-a897-40384816ef3b/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2232,16 +1762,6 @@ }, "PCVDCxY9QM-lEgaGhrCPrw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "3c25430b-163d-40cf-a512-068686b08faf/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2286,16 +1806,6 @@ }, "Pr3zPNMqS8CAY6hHB_lwow": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "3ebdf33c-d32a-4bc0-8063-a84707f970a3/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2332,16 +1842,6 @@ }, "Q5dgajTmQaG3bW8xf8mWRw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "4397606a-34e6-41a1-b76d-6f317fc99647/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2378,16 +1878,6 @@ }, "QDGdgQTQRC2xZNR3Zs_IhA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "40319d81-04d0-442d-b164-d47766cfc884/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2432,16 +1922,6 @@ }, "QUhTaNzmR-SnLuVMscnSYA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "41485368-dce6-47e4-a72e-e54cb1c9d260/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2479,16 +1959,6 @@ }, "QbJceuUbQF-SAHp_tuN4bg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "41b25c7a-e51b-405f-9200-7a7fb6e3786e/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2525,16 +1995,6 @@ }, "TNBQvfFkR0KoVFz_7QIkIw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "4cd050bd-f164-4742-a854-5cffed022423/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2571,16 +2031,6 @@ }, "TacsT1-FSMia0IGkYP-cTQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "4da72c4f-5f85-48c8-9ad0-81a460ff9c4d/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2617,16 +2067,6 @@ }, "TbO_k663R3St6hBFE92StQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "4db3bf93-aeb7-4774-adea-104513dd92b5/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2663,16 +2103,6 @@ }, "TwPxQPQiQLC0jwp0Crf4sw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "4f03f140-f422-40b0-b48f-0a740ab7f8b3/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2709,16 +2139,6 @@ }, "UAEeps8wSMmoL4r0MdjlXA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "50011ea6-cf30-48c9-a82f-8af431d8e55c/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2756,16 +2176,6 @@ }, "UWjPMpssTgq0kA7hj9QtJw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "5168cf32-9b2c-4e0a-b490-0ee18fd42d27/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2802,16 +2212,6 @@ }, "UZ37gpDqTRS1pBNnp0Spsg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "519dfb82-90ea-4d14-b5a4-1367a744a9b2/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2856,16 +2256,6 @@ }, "UoGLhHlwT4mH3h3ukcm_Ig": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "52818b84-7970-4f89-87de-1dee91c9bf22/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2902,16 +2292,6 @@ }, "UxS4jt6lQdyUYnPcmN-z-w": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "5314b88e-dea5-41dc-9462-73dc98dfb3fb/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2948,16 +2328,6 @@ }, "VGU4RUKFScaK8eBikMi9IQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "54653845-4285-49c6-8af1-e06290c8bd21/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -2994,16 +2364,6 @@ }, "VqbRb6bZSlywWOQN62tk-g": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "56a6d16f-a6d9-4a5c-b058-e40deb6b64fa/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3040,16 +2400,6 @@ }, "VspVGZYjSAqqsg6CGgv-rw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "56ca5519-9623-480a-aab2-0e821a0bfeaf/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3086,16 +2436,6 @@ }, "WkFYxflwT76VzWNc6hryiQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "5a4158c5-f970-4fbe-95cd-635cea1af289/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3132,16 +2472,6 @@ }, "XOw2FYEdSb2hwS_lj2bDAg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "5cec3615-811d-49bd-a1c1-2fe58f66c302/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3179,16 +2509,6 @@ }, "XQdfjjACRJCmpqKjLxLRXA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "5d075f8e-3002-4490-a6a6-a2a32f12d15c/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3225,16 +2545,6 @@ }, "XiZuJW7MQ-GrC7iV81YWdw": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "5e266e25-6ecc-43e1-ab0b-b895f3561677/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3271,16 +2581,6 @@ }, "Xxznj5R9QCS-7iqptegltQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "5f1ce78f-947d-4024-beee-2aa9b5e825b5/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3317,16 +2617,6 @@ }, "Y32tr9w0Tlu67dz74wiCyg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "637dadaf-dc34-4e5b-baed-dcfbe30882ca/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3363,16 +2653,6 @@ }, "Y6Zdr078RvemM_nabfiE3A": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "63a65daf-4efc-46f7-a633-f9da6df884dc/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3409,16 +2689,6 @@ }, "YUU6v89vRd669kauRLNk5g": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "61453abf-cf6f-45de-baf6-46ae44b364e6/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3455,16 +2725,6 @@ }, "YYCniY1ITuGl0fRNghknlQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "6180a789-8d48-4ee1-a5d1-f44d82192795/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3501,16 +2761,6 @@ }, "YgnJMukTS0efJHzTI5_AnA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "6209c932-e913-4b47-9f24-7cd3239fc09c/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3547,16 +2797,6 @@ }, "ZPrilAZcSimdmLj9flM24w": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "64fae294-065c-4a29-9d98-b8fd7e5336e3/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3593,16 +2833,6 @@ }, "ZnJOMTOcRwCZG09VY4InxQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "66724e31-339c-4700-991b-4f55638227c5/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3639,16 +2869,6 @@ }, "ZyNAZZR0SmOcgqC_k_wqsQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "67234065-9474-4a63-9c82-a0bf93fc2ab1/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3693,16 +2913,6 @@ }, "a1uUehQvSciykK6DUUNQbQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "6b5b947a-142f-49c8-b290-ae835143506d/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3739,16 +2949,6 @@ }, "a5UF8fEyQw-fx_32Qo-WjQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "6b9505f1-f132-430f-9fc7-fdf6428f968d/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3786,16 +2986,6 @@ }, "aNf8J_ctQp6IjWJTxCAPbQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "68d7fc27-f72d-429e-888d-6253c4200f6d/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3832,16 +3022,6 @@ }, "aNlE6teASbGqtSK4XSeMkg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "68d944ea-d780-49b1-aab5-22b85d278c92/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3878,16 +3058,6 @@ }, "ac7vsMLASl6XS1O_VzlLXQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "69ceefb0-c2c0-4a5e-974b-53bf57394b5d/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3924,16 +3094,6 @@ }, "aeWDjRcUQhudU4axBiCQ8A": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "69e5838d-1714-421b-9d53-86b1062090f0/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -3970,16 +3130,6 @@ }, "b0DpnSIQQymnTTSXxRWmmg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "6f40e99d-2210-4329-a74d-3497c515a69a/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -4016,16 +3166,6 @@ }, "ba34BnYgT_mv1g5BvrlXnQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "6dadf806-7620-4ff9-afd6-0e41beb9579d/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -4062,16 +3202,6 @@ }, "c9SSXwx3TnKm7MnNEit0OA": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "73d4925f-0c77-4e72-a6ec-c9cd122b7438/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -4108,16 +3238,6 @@ }, "dUcobAuPTEqHok4rpJl1Dg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "7547286c-0b8f-4c4a-87a2-4e2ba499750e/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -4154,16 +3274,6 @@ }, "eokGh4-OSbOqAzVhJypYPg": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "7a890687-8f8e-49b3-aa03-3561272a583e/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -4208,16 +3318,6 @@ }, "eugCBPRNRD-zyP_I9Jcn1w": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "7ae80204-f44d-443f-b3c8-ffc8f49727d7/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", @@ -4255,16 +3355,6 @@ }, "fu4duSjBRte-V6y_oQ_BrQ": { "job": { - "artifacts": [ - { - "blob": { - "job_details": [] - }, - "job_guid": "7eee1db9-28c1-46d7-be57-acbfa10fc1ad/0", - "name": "Job Info", - "type": "json" - } - ], "build_platform": { "architecture": "-", "os_name": "-", diff --git a/tests/sample_data/pulse_consumer/transformed_job_data.json b/tests/sample_data/pulse_consumer/transformed_job_data.json index 3b675ce05..cf92591ff 100644 --- a/tests/sample_data/pulse_consumer/transformed_job_data.json +++ b/tests/sample_data/pulse_consumer/transformed_job_data.json @@ -14,29 +14,6 @@ "option_collection": { "debug": true }, - "artifacts": [ - { - "job_guid": "218cac72-734c-4cbb-b1ce-76bb3cda9425/0", - "type": "json", - "blob": { - "job_details": [ - { - "url": "http://mozilla-releng-blobs.s3.amazonaws.com/blobs/Mozilla-Inbound-Non-PGO/sha512/05c7f57df6583c6351c6b49e439e2678e0f43c2e5b66695ea7d096a7519e1805f441448b5ffd4cc3b80b8b2c74b244288fda644f55ed0e226ef4e25ba02ca466", - "content_type": "link", - "value": "svgr-e10s_errorsummary.log", - "title": "artifact uploaded" - }, - { - "url": "http://mozilla-releng-blobs.s3.amazonaws.com/blobs/Mozilla-Inbound-Non-PGO/sha512/a6b13038a5ea71b0975580904e35e08c9d965949c07eb8a12f75eb33f1ec9af1da6f4197c424d850deadebf631aa71da3c0d57a59ec9d82a419aa8c4644a2905", - "content_type": "link", - "value": "svgr-e10s_raw.log", - "title": "artifact uploaded" - } - ] - }, - "name": "Job Info" - } - ], "machine_platform": { "platform": "linux64", "os_name": "linux", @@ -86,7 +63,6 @@ "option_collection": { "debug": true }, - "artifacts": [], "machine_platform": { "platform": "linux64", "os_name": "linux", @@ -125,7 +101,6 @@ "option_collection": { "debug": true }, - "artifacts": [], "machine_platform": { "platform": "linux64", "os_name": "linux", @@ -164,60 +139,6 @@ "option_collection": { "opt": true }, - "artifacts": [ - { - "job_guid": "66c4b325-0bb7-43ba-b631-f7a120103329/0", - "type": "json", - "blob": { - "step_data": { - "steps": [ - { - "errors": [], - "name": "downloading to oauth.txt", - "started": "2016-02-02T14:20:05-08:00", - "started_linenumber": 231, - "finished_linenumber": 232, - "finished": "2016-02-02T14:27:05-08:00", - "order": 0, - "result": "success" - }, - { - "errors": [ - { - "line": "14:38:05 INFO - PROCESS | 16672 | [Child 17361] ###!!! ABORT: Aborting on channel error.: file /builds/slave/m-in-l64-000000000000000000000/build/src/ipc/glue/MessageChannel.cpp, line 1823", - "linenumber": 3211 - }, - { - "line": "14:38:05 INFO - TEST-UNEXPECTED-ERROR | tart | TIMEOUT: TART", - "linenumber": 3212 - }, - { - "line": "14:38:05 ERROR - Traceback (most recent call last):", - "linenumber": 3213 - } - ], - "name": "'/tools/buildbot/bin/python scripts/scripts/talos_script.py ...' failed", - "started": "2016-02-02T14:27:05-08:00", - "started_linenumber": 234, - "finished_linenumber": 3269, - "finished": "2016-02-02T14:38:09-08:00", - "order": 1, - "result": "testfailed" - } - ], - "errors_truncated": false - }, - "logurl": "http://ftp.mozilla.org/pub/mozilla.org/spidermonkey/tinderbox-builds/mozilla-inbound-linux64/mozilla-inbound_linux64_spidermonkey-warnaserr-bm57-build1-build352.txt.gz" - }, - "name": "text_log_summary" - }, - { - "type": "json", - "blob": { "fee": "foo" }, - "job_guid": "66c4b325-0bb7-43ba-b631-f7a120103329/0", - "name": "Bug suggestions" - } - ], "machine_platform": { "platform": "linux64", "os_name": "linux", @@ -234,7 +155,7 @@ "log_references": [ { "url": "http://ftp.mozilla.org/pub/mozilla.org/spidermonkey/tinderbox-builds/mozilla-inbound-linux64/mozilla-inbound_linux64_spidermonkey-warnaserr-bm57-build1-build352.txt.gz", - "parse_status": "parsed", + "parse_status": "pending", "name": "builds-4h" } ], @@ -262,14 +183,6 @@ "option_collection": { "opt": true }, - "artifacts": [ - { - "blob": { "fee": "foo" }, - "job_guid": "6c8cd566-df63-4102-a0bd-0603ddad8743/3", - "name": "quagmire", - "type": "json" - } - ], "machine_platform": { "platform": "linux64", "os_name": "linux", diff --git a/treeherder/etl/artifact.py b/treeherder/etl/artifact.py index 1642c87a8..1a97bd8e6 100644 --- a/treeherder/etl/artifact.py +++ b/treeherder/etl/artifact.py @@ -8,61 +8,11 @@ from django.db.utils import IntegrityError from treeherder.etl.perf import store_performance_artifact from treeherder.etl.text import astral_filter from treeherder.model import error_summary -from treeherder.model.models import Job, JobDetail, TextLogError, TextLogStep +from treeherder.model.models import Job, TextLogError, TextLogStep logger = logging.getLogger(__name__) -def store_job_info_artifact(job, job_info_artifact): - """ - Store the contents of the job info artifact - in job details - """ - new_job_details = json.loads(job_info_artifact['blob'])['job_details'] - existing_job_details = JobDetail.objects.filter(job=job) - - # Use a dict for to_create because sometimes we are sent duplicate details which would cause - # an IntegrityError during bulk_create due to the constraints of a unique index. - # So we use a key to weed the dups out. - to_create = {} - to_update = [] - - for job_detail in new_job_details: - job_detail_dict = { - 'title': job_detail.get('title'), - 'value': job_detail['value'], - 'url': job_detail.get('url'), - } - for (k, v) in job_detail_dict.items(): - max_field_length = JobDetail._meta.get_field(k).max_length - if v is not None and len(v) > max_field_length: - logger.warning( - "Job detail '%s' for job_guid %s too long, truncating", - v[:max_field_length], - job.guid, - ) - job_detail_dict[k] = v[:max_field_length] - - title = job_detail_dict['title'] - value = job_detail_dict['value'] - - existing_job_detail = existing_job_details.filter(job=job, title=title, value=value).first() - if existing_job_detail: - # move the url field to be updated in defaults now that it's - # had its size trimmed, if necessary - # job_detail_dict['defaults'] = {'url': job_detail_dict['url']} - # del job_detail_dict['url'] - to_update.append(JobDetail(id=existing_job_detail.id, job=job, **job_detail_dict)) - else: - key = '{}{}'.format(title, value) - to_create[key] = JobDetail(job=job, **job_detail_dict) - - if len(to_update): - JobDetail.objects.bulk_update(to_update, ['title', 'value', 'url']) - if len(to_create): - JobDetail.objects.bulk_create(to_create.values()) - - def store_text_log_summary_artifact(job, text_log_summary_artifact): """ Store the contents of the text log summary artifact @@ -140,8 +90,6 @@ def store_job_artifacts(artifact_data): if artifact_name == 'performance_data': store_performance_artifact(job, artifact) - elif artifact_name == 'Job Info': - store_job_info_artifact(job, artifact) elif artifact_name == 'text_log_summary': try: store_text_log_summary_artifact(job, artifact) diff --git a/treeherder/etl/job_loader.py b/treeherder/etl/job_loader.py index fbfd152f6..aac9de80f 100644 --- a/treeherder/etl/job_loader.py +++ b/treeherder/etl/job_loader.py @@ -133,7 +133,6 @@ class JobLoader: "machine": self._get_machine(pulse_job), "option_collection": self._get_option_collection(pulse_job), "log_references": self._get_log_references(pulse_job), - "artifacts": self._get_artifacts(pulse_job, job_guid), }, "superseded": pulse_job.get("coalesced", []), "revision": pulse_job["origin"]["revision"], @@ -165,99 +164,11 @@ class JobLoader: def _get_job_symbol(self, job): return "{}{}".format(job["display"].get("jobSymbol", ""), job["display"].get("chunkId", "")) - def _get_artifacts(self, job, job_guid): - artifact_funcs = [self._get_job_info_artifact, self._get_text_log_summary_artifact] - pulse_artifacts = [] - for artifact_func in artifact_funcs: - artifact = artifact_func(job, job_guid) - if artifact: - pulse_artifacts.append(artifact) - - # add in any arbitrary artifacts included in the "extra" section - pulse_artifacts.extend(self._get_extra_artifacts(job, job_guid)) - return pulse_artifacts - - def _get_job_info_artifact(self, job, job_guid): - if "jobInfo" in job: - ji = job["jobInfo"] - job_details = [] - if "links" in ji: - for link in ji["links"]: - job_details.append( - { - "url": link["url"], - "content_type": "link", - "value": link["linkText"], - "title": link["label"], - } - ) - - artifact = { - "blob": {"job_details": job_details}, - "type": "json", - "name": "Job Info", - "job_guid": job_guid, - } - return artifact - - def _get_text_log_summary_artifact(self, job, job_guid): - # We can only have one text_log_summary artifact, - # so pick the first log with steps to create it. - - if "logs" in job: - for log in job["logs"]: - if "steps" in log: - old_steps = log["steps"] - new_steps = [] - - for idx, step in enumerate(old_steps): - errors = step.get("errors", []) - - new_steps.append( - { - "name": step["name"], - "result": self._get_step_result(job, step["result"]), - "started": step["timeStarted"], - "finished": step["timeFinished"], - "started_linenumber": step["lineStarted"], - "finished_linenumber": step["lineFinished"], - "errors": errors, - "order": idx, - } - ) - - return { - "blob": { - "step_data": { - "steps": new_steps, - "errors_truncated": log.get("errorsTruncated"), - }, - "logurl": log["url"], - }, - "type": "json", - "name": "text_log_summary", - "job_guid": job_guid, - } - - def _get_extra_artifacts(self, job, job_guid): - artifacts = [] - if "extra" in job and "artifacts" in job["extra"]: - for extra_artifact in job["extra"]["artifacts"]: - artifact = extra_artifact - artifact["job_guid"] = job_guid - artifacts.append(artifact) - - return artifacts - def _get_log_references(self, job): log_references = [] for logref in job.get("logs", []): log_references.append( - { - "name": logref["name"], - "url": logref["url"], - "parse_status": "parsed" if "steps" in logref else "pending", - } + {"name": logref["name"], "url": logref["url"], "parse_status": "pending"} ) log_references.extend(self._get_errorsummary_log_references(job)) return log_references diff --git a/treeherder/etl/jobs.py b/treeherder/etl/jobs.py index 1503825db..8c114183b 100644 --- a/treeherder/etl/jobs.py +++ b/treeherder/etl/jobs.py @@ -9,7 +9,6 @@ import newrelic.agent from django.core.exceptions import ObjectDoesNotExist from django.db.utils import IntegrityError -from treeherder.etl.artifact import serialize_artifact_json_blobs, store_job_artifacts from treeherder.etl.common import get_guid_root from treeherder.model.models import ( BuildPlatform, @@ -278,26 +277,6 @@ def _load_job(repository, job_datum, push_id): push_id=push_id, ) - artifacts = job_datum.get('artifacts', []) - - has_text_log_summary = any(x for x in artifacts if x['name'] == 'text_log_summary') - if artifacts: - artifacts = serialize_artifact_json_blobs(artifacts) - - # need to add job guid to artifacts, since they likely weren't - # present in the beginning - for artifact in artifacts: - if not all(k in artifact for k in ("name", "type", "blob")): - raise ValueError("Artifact missing properties: {}".format(artifact)) - # Ensure every artifact has a ``job_guid`` value. - # It is legal to submit an artifact that doesn't have a - # ``job_guid`` value. But, if missing, it should inherit that - # value from the job itself. - if "job_guid" not in artifact: - artifact["job_guid"] = job_guid - - store_job_artifacts(artifacts) - log_refs = job_datum.get('log_references', []) job_logs = [] if log_refs: @@ -308,19 +287,12 @@ def _load_job(repository, job_datum, push_id): url = log.get('url') or 'unknown' url = url[0:255] - # this indicates that a summary artifact was submitted with - # this job that corresponds to the buildbot_text log url. - # Therefore, the log does not need parsing. So we should - # ensure that it's marked as already parsed. - if has_text_log_summary and name == 'buildbot_text': - parse_status = JobLog.PARSED + parse_status_map = dict([(k, v) for (v, k) in JobLog.STATUSES]) + mapped_status = parse_status_map.get(log.get('parse_status')) + if mapped_status: + parse_status = mapped_status else: - parse_status_map = dict([(k, v) for (v, k) in JobLog.STATUSES]) - mapped_status = parse_status_map.get(log.get('parse_status')) - if mapped_status: - parse_status = mapped_status - else: - parse_status = JobLog.PENDING + parse_status = JobLog.PENDING jl, _ = JobLog.objects.get_or_create( job=job, name=name, url=url, defaults={'status': parse_status} @@ -342,7 +314,7 @@ def _schedule_log_parsing(job, job_logs, result): # importing here to avoid an import loop from treeherder.log_parser.tasks import parse_logs - task_types = {"errorsummary_json", "buildbot_text", "builds-4h"} + task_types = {"errorsummary_json", "builds-4h"} job_log_ids = [] for job_log in job_logs: @@ -415,13 +387,6 @@ def store_job_data(repository, originalData): "name": "unittest" } ], - artifacts:[{ - type:" json | img | ...", - name:"", - log_urls:[ - ] - blob:"" - }], }, "superseded": [] }, diff --git a/treeherder/etl/taskcluster_pulse/handler.py b/treeherder/etl/taskcluster_pulse/handler.py index ca0c45eaa..b775c66fa 100644 --- a/treeherder/etl/taskcluster_pulse/handler.py +++ b/treeherder/etl/taskcluster_pulse/handler.py @@ -330,6 +330,10 @@ async def fetchArtifacts(root_url, taskId, runId): return artifacts +# we no longer store these in the job_detail table, but we still need to +# fetch them in order to determine if there is an error_summary log; +# TODO refactor this when there is a way to only retrieve the error_summary +# artifact: https://bugzilla.mozilla.org/show_bug.cgi?id=1629716 async def addArtifactUploadedLinks(root_url, taskId, runId, job): artifacts = [] try: diff --git a/treeherder/log_parser/artifactbuildercollection.py b/treeherder/log_parser/artifactbuildercollection.py index 530e7bdaa..9095c477d 100644 --- a/treeherder/log_parser/artifactbuildercollection.py +++ b/treeherder/log_parser/artifactbuildercollection.py @@ -4,11 +4,7 @@ import newrelic.agent from treeherder.utils.http import make_request -from .artifactbuilders import ( - BuildbotJobArtifactBuilder, - BuildbotLogViewArtifactBuilder, - BuildbotPerformanceDataArtifactBuilder, -) +from .artifactbuilders import BuildbotLogViewArtifactBuilder, BuildbotPerformanceDataArtifactBuilder from .parsers import EmptyPerformanceData logger = logging.getLogger(__name__) @@ -49,12 +45,6 @@ BuildbotLogViewArtifactBuilder * Parsers: * StepParser, which has its own ErrorParser -BuildbotJobArtifactBuilder -------------- -* Builds an artifact for the Treeherder job details panel -* Parsers: -* TinderboxPrintParser - BuildbotPerformanceDataArtifactBuilder ------------- * Builds an artifact from performance data @@ -83,7 +73,6 @@ BuildbotPerformanceDataArtifactBuilder # use the defaults self.builders = [ BuildbotLogViewArtifactBuilder(url=self.url), - BuildbotJobArtifactBuilder(url=self.url), BuildbotPerformanceDataArtifactBuilder(url=self.url), ] diff --git a/treeherder/log_parser/artifactbuilders.py b/treeherder/log_parser/artifactbuilders.py index bae115b13..c4c167a28 100644 --- a/treeherder/log_parser/artifactbuilders.py +++ b/treeherder/log_parser/artifactbuilders.py @@ -1,6 +1,6 @@ import logging -from .parsers import PerformanceParser, StepParser, TinderboxPrintParser +from .parsers import PerformanceParser, StepParser logger = logging.getLogger(__name__) @@ -61,20 +61,6 @@ class ArtifactBuilderBase: return self.artifact -class BuildbotJobArtifactBuilder(ArtifactBuilderBase): - """ - Gather properties for this job. - - This parser gathers the data that shows in the job details panel. - """ - - def __init__(self, url=None): - """Construct a job artifact builder.""" - super().__init__(url) - self.parser = TinderboxPrintParser() - self.name = "Job Info" - - class BuildbotLogViewArtifactBuilder(ArtifactBuilderBase): """Makes the artifact for the structured log viewer.""" diff --git a/treeherder/log_parser/parsers.py b/treeherder/log_parser/parsers.py index 1fd306063..ad62a4cc8 100644 --- a/treeherder/log_parser/parsers.py +++ b/treeherder/log_parser/parsers.py @@ -1,7 +1,6 @@ import json import logging import re -from html.parser import HTMLParser import jsonschema from django.conf import settings @@ -261,92 +260,6 @@ class StepParser(ParserBase): return self.steps[self.stepnum] -class TinderboxPrintParser(ParserBase): - - RE_TINDERBOXPRINT = re.compile(r'.*TinderboxPrint: ?(?P.*)$') - - RE_UPLOADED_TO = re.compile( - r"http(s)?://.*)['\"]>(?P.+): uploaded" - ) - RE_LINK_HTML = re.compile( - ( - r"((?P[A-Za-z/\.0-9\-_ ]+): )?" - r"<a .*href=['\"](?P<url>http(s)?://.+)['\"].*>(?P<value>.+)</a>" - ) - ) - RE_LINK_TEXT = re.compile(r"((?P<title>[A-Za-z/\.0-9\-_ ]+): )?(?P<url>http(s)?://.*)") - - TINDERBOX_REGEXP_TUPLE = ( - { - 're': RE_UPLOADED_TO, - 'base_dict': {"content_type": "link", "title": "artifact uploaded"}, - 'duplicates_fields': {}, - }, - {'re': RE_LINK_HTML, 'base_dict': {"content_type": "link"}, 'duplicates_fields': {}}, - { - 're': RE_LINK_TEXT, - 'base_dict': {"content_type": "link"}, - 'duplicates_fields': {'value': 'url'}, - }, - ) - - def __init__(self): - """Setup the artifact to hold the job details.""" - super().__init__("job_details") - - def parse_line(self, line, lineno): - """Parse a single line of the log""" - match = self.RE_TINDERBOXPRINT.match(line) if line else None - if match: - line = match.group('line') - - for regexp_item in self.TINDERBOX_REGEXP_TUPLE: - match = regexp_item['re'].match(line) - if match: - artifact = match.groupdict() - # handle duplicate fields - for to_field, from_field in regexp_item['duplicates_fields'].items(): - # if to_field not present or None copy form from_field - if to_field not in artifact or artifact[to_field] is None: - artifact[to_field] = artifact[from_field] - artifact.update(regexp_item['base_dict']) - self.artifact.append(artifact) - return - - # default case: consider it html content - # try to detect title/value splitting on <br/> - artifact = { - "content_type": "raw_html", - } - if "<br/>" in line: - title, value = line.split("<br/>", 1) - artifact["title"] = title - artifact["value"] = value - # or similar long lines if they contain a url - elif "href" in line and "title" in line: - - def parse_url_line(line_data): - class TpLineParser(HTMLParser): - def handle_starttag(self, tag, attrs): - d = dict(attrs) - artifact["url"] = d['href'] - artifact["title"] = d['title'] - - def handle_data(self, data): - artifact["value"] = data - - p = TpLineParser() - p.feed(line_data) - p.close() - - # strip ^M returns on windows lines otherwise - # handle_data will yield no data 'value' - parse_url_line(line.replace('\r', '')) - else: - artifact["value"] = line - self.artifact.append(artifact) - - class ErrorParser(ParserBase): """A generic error detection sub-parser""" diff --git a/treeherder/log_parser/tasks.py b/treeherder/log_parser/tasks.py index c64a35c17..6a1525a8d 100644 --- a/treeherder/log_parser/tasks.py +++ b/treeherder/log_parser/tasks.py @@ -30,11 +30,7 @@ def parse_logs(job_id, job_log_ids, priority): if len(job_log_ids) != len(job_logs): logger.warning("Failed to load all expected job ids: %s", ", ".join(job_log_ids)) - parser_tasks = { - "errorsummary_json": store_failure_lines, - "buildbot_text": parse_unstructured_log, - "builds-4h": parse_unstructured_log, - } + parser_tasks = {"errorsummary_json": store_failure_lines, "builds-4h": parse_unstructured_log} # We don't want to stop parsing logs for most Exceptions however we still # need to know one occurred so we can skip further steps and reraise to @@ -75,9 +71,7 @@ def parse_logs(job_id, job_log_ids, priority): if first_exception: raise first_exception - if "errorsummary_json" in completed_names and ( - "buildbot_text" in completed_names or "builds-4h" in completed_names - ): + if "errorsummary_json" in completed_names and "builds-4h" in completed_names: success = crossreference_job(job)