From 1e44e6667ef6575dc0303f51fe3209a51ab769d5 Mon Sep 17 00:00:00 2001 From: Joel Maher Date: Tue, 18 Feb 2025 14:01:58 -0800 Subject: [PATCH] more sample_data updates --- docs/testing.md | 19 + schemas/pulse-job.yml | 2 + tests/conftest.py | 7 +- tests/etl/test_job_ingestion.py | 2 +- tests/etl/test_job_loader.py | 53 +- .../expected_comment.text | 10 +- .../expected_comment_with_5_failures.text | 28 +- .../intermittents_commenter/test_commenter.py | 8 +- tests/log_parser/test_tasks.py | 4 +- .../test_identify_retriggerables.py | 8 +- tests/push_health/test_builds.py | 4 +- .../artifacts/text_log_summary.json | 2 +- tests/sample_data/bug_list.json | 54 +- .../bugscache_population/run-0.json | 2 +- tests/sample_data/graphql/query_node.json | 170 -- tests/sample_data/job_data.txt | 426 ++--- tests/sample_data/job_data2.txt | 6 - ...itest-2-bm80-tests1-macosx-build138.txt.gz | Bin 30010 -> 32007 bytes ...st-other-bm53-tests1-linux-build122.txt.gz | Bin 36673 -> 36673 bytes .../sample_data/pulse_consumer/job_data.json | 1589 +++++++++++++++-- .../pulse_consumer/transformed_job_data.json | 1285 ++++++++++++- tests/sample_data/push_data.json | 479 ++++- tests/sample_data/transform.py | 387 ++++ tests/sample_data_generator.py | 15 +- tests/test_worker/test_stats.py | 13 +- tests/webapp/api/test_jobs_api.py | 101 +- tests/webapp/api/test_note_api.py | 20 +- tests/webapp/api/test_perfcompare_api.py | 42 +- tests/webapp/api/test_performance_data_api.py | 11 +- tests/webapp/api/test_push_api.py | 61 +- treeherder/etl/job_loader.py | 2 + 31 files changed, 3812 insertions(+), 998 deletions(-) delete mode 100644 tests/sample_data/graphql/query_node.json delete mode 100644 tests/sample_data/job_data2.txt create mode 100644 tests/sample_data/transform.py diff --git a/docs/testing.md b/docs/testing.md index 1d1bdbce26a..c7ff782f3ee 100644 --- a/docs/testing.md +++ b/docs/testing.md @@ -96,4 +96,23 @@ Just the `test_ingest_pending_pulse_job` within the `/etl` tests docker-compose run backend pytest tests/ -k test_ingest_pending_pulse_job ``` +### Updating backend python test data + +There are many parts of the backend data, this section will continue to be updated as we document this process. + +For the `sample_data/` there is `tests/sample_data/transform.py`: + +- `push_data.json`: list of commits +- `job_data.txt`: list of job data as returned from the TH jobs api +- `pulse_consumer/job_data.json`: specific data that pulse would have for related jobs and pushes +- `pulse_consumer/transformed_job_data.json`: what we transform the pulse data to + +The will update the data used for `etl/` using recent live data from autoland. + +There are a lot of taskid, revisions, and expected fields to update in tests. Future work could be done to: + +- create a revision list and reference it instead of raw revisions +- create an input file as a start date, end date, and use that instead of hard coded dates in many tests +- ensure variety of platforms, builds, tests, pass/fail, etc. are included + [eslint]: https://eslint.org diff --git a/schemas/pulse-job.yml b/schemas/pulse-job.yml index 89e1b6c1b24..a83479871ac 100644 --- a/schemas/pulse-job.yml +++ b/schemas/pulse-job.yml @@ -146,6 +146,7 @@ properties: description: | fail: A failure exception: An infrastructure error/exception + retry: Task has a known exception and is automatically retried success: Build/Test executed without error or failure canceled: The job was cancelled by a user unknown: When the job is not yet completed @@ -155,6 +156,7 @@ properties: - success - fail - exception + - retry - canceled - superseded - unknown diff --git a/tests/conftest.py b/tests/conftest.py index 135c1efa7b6..e5a6e6c52f9 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -421,7 +421,8 @@ def try_push_stored(try_repository, sample_push): def eleven_job_blobs(sample_data, sample_push, test_repository, mock_log_parser): store_push_data(test_repository, sample_push) - num_jobs = 11 + # NOTE: when generating new data, we appear to need more jobs to find similar jobs + num_jobs = 100 jobs = sample_data.job_data[0:num_jobs] max_index = len(sample_push) - 1 @@ -1146,7 +1147,7 @@ def bug_data(eleven_jobs_stored, test_repository, test_push, bugs): bug_id = bugs[0].bugzilla_id job_id = jobs[0].id th_models.BugJobMap.create(job_id=job_id, bugzilla_id=bug_id) - query_string = f"?startday=2012-05-09&endday=2018-05-10&tree={test_repository.name}" + query_string = f"?startday=2022-05-09&endday=2025-05-10&tree={test_repository.name}" return { "tree": test_repository.name, @@ -1188,7 +1189,7 @@ def test_run_data(bug_data): @pytest.fixture def group_data(transactional_db, eleven_job_blobs, create_jobs): - query_string = "?manifest=/test&date=2022-10-01" + query_string = "?manifest=/test&date=2025-02-19" jt = [] jt.append( diff --git a/tests/etl/test_job_ingestion.py b/tests/etl/test_job_ingestion.py index 5b73130dfbb..7718a0b2790 100644 --- a/tests/etl/test_job_ingestion.py +++ b/tests/etl/test_job_ingestion.py @@ -19,7 +19,7 @@ def test_ingest_single_sample_job( job = Job.objects.get(id=1) # Ensure we don't inadvertently change the way we generate job-related hashes. assert job.option_collection_hash == "32faaecac742100f7753f0c1d0aa0add01b4046b" - assert job.signature.signature == "d900aca1e93a9ef2d9e00c1877c838ea920abca1" + assert job.signature.signature == "d30205e5d3010b250095d52983ad7fd17d10ad34" def test_ingest_all_sample_jobs( diff --git a/tests/etl/test_job_loader.py b/tests/etl/test_job_loader.py index b18dcd0accf..5f2814bf5b0 100644 --- a/tests/etl/test_job_loader.py +++ b/tests/etl/test_job_loader.py @@ -120,29 +120,50 @@ def test_ingest_pulse_jobs( jl.process_job(job, "https://firefox-ci-tc.services.mozilla.com") jobs = Job.objects.all() - assert len(jobs) == 5 + assert len(jobs) == 30 assert [job.taskcluster_metadata for job in jobs] assert set(TaskclusterMetadata.objects.values_list("task_id", flat=True)) == set( [ - "IYyscnNMTLuxzna7PNqUJQ", - "XJCbbRQ6Sp-UL1lL-tw5ng", - "ZsSzJQu3Q7q2MfehIBAzKQ", - "bIzVZt9jQQKgvQYD3a2HQw", + "AI3Nrr3gSDSpZ9E9aBA3rg", + "BAG7ifS1QbGCDwiOP7NklQ", + "CaK6NlfBSf6F-NAVrrKJDQ", + "CilZCnmiTKmagJe_h6Hq5A", + "FNT3BLiQRHO14NNgonjQQg", + "FcbIUoVbS4utxFES84wrPw", + "FclD6gA-TTGgvq_r9-LSDg", + "GPLk78m6Sz6TTLJFVca4Xw", + "GcvHP6HLSeO_rKYDN2y_Tg", + "I-Hg7bM4TUOq4JqnX0pt0g", + "I2Y-TBNcQPSJzsKlB95rfQ", + "M1ECjPJBTlmwJxZq5pWyvg", + "MKq8mMM-RIOxztXO5ng-_A", + "MrrbifzBQJefUbS2ym4Qag", + "ORYYNMhET0yxGMvel4Jujg", + "TqWDDGoWSbCH93RTTxPAWg", + "V8rtIDroRV-G9bzjJglS0A", + "VVa2amzMS-2cSDbig9RHsw", + "YIOK401yR2GvygIFcfPVBg", + "b_QCzMjVQmKPyO5Il0Jedw", + "bljbLRFdT4KGCWJ2_C6RsQ", + "c2dxYucCSMWPlTkb70r89g", + "cPe8y071Spat09dlAzCGug", + "cZ7gc9JYQa2UPEC_EIxIug", + "dB8R5AXORZeCpDfQlYUlow", + "e1YPllz6TMawISpugkRx1g", + "eJ9PG41tSaWzNU1uY7-uSQ", + "edzgzCphTAS-QN_TAnf7eA", + "ekQaeC_yR0K8jPKx28E7EA", + "ftXsRyOwRgeiiYHyITXUOA", ] ) job_logs = JobLog.objects.filter(job_id=1) - assert job_logs.count() == 2 + assert job_logs.count() == 1 logs_expected = [ - { - "name": "errorsummary_json", - "url": "http://example.com/blobs/Mozilla-Inbound-Non-PGO/sha512/05c7f57df6583c6351c6b49e439e2678e0f43c2e5b66695ea7d096a7519e1805f441448b5ffd4cc3b80b8b2c74b244288fda644f55ed0e226ef4e25ba02ca466", - "parse_status": 0, - }, { "name": "live_backing_log", - "url": "http://ftp.mozilla.org/pub/mozilla.org/spidermonkey/tinderbox-builds/mozilla-inbound-linux64/mozilla-inbound_linux64_spidermonkey-warnaserr-bm57-build1-build352.txt.gz", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AI3Nrr3gSDSpZ9E9aBA3rg/runs/0/artifacts/public/logs/live_backing.log", "parse_status": 0, }, ] @@ -191,10 +212,10 @@ def test_ingest_pending_pulse_job( job = jobs[0] assert job.taskcluster_metadata - assert job.taskcluster_metadata.task_id == "IYyscnNMTLuxzna7PNqUJQ" + assert job.taskcluster_metadata.task_id == "AI3Nrr3gSDSpZ9E9aBA3rg" # should not have processed any log or details for pending jobs - assert JobLog.objects.count() == 2 + assert JobLog.objects.count() == 1 def test_ingest_pulse_jobs_bad_project( @@ -214,7 +235,7 @@ def test_ingest_pulse_jobs_bad_project( jl.process_job(pulse_job, "https://firefox-ci-tc.services.mozilla.com") # length of pulse jobs is 5, so one will be skipped due to bad project - assert Job.objects.count() == 4 + assert Job.objects.count() == 29 @responses.activate @@ -228,7 +249,7 @@ def test_ingest_pulse_jobs_with_missing_push(pulse_jobs): job["origin"]["revision"] = "1234567890123456789012345678901234567890" responses.add( responses.GET, - "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IYyscnNMTLuxzna7PNqUJQ", + "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AI3Nrr3gSDSpZ9E9aBA3rg", json={}, content_type="application/json", status=200, diff --git a/tests/intermittents_commenter/expected_comment.text b/tests/intermittents_commenter/expected_comment.text index 65b8b040a49..72cd8450865 100644 --- a/tests/intermittents_commenter/expected_comment.text +++ b/tests/intermittents_commenter/expected_comment.text @@ -1,5 +1,5 @@ ## Summary -1 failures in 10 pushes (0.1 failures/push) were associated with this bug in the last 7 days. +1 failures in 23 pushes (0.043 failures/push) were associated with this bug in the last 7 days. This is the #1 most frequent failure this week. @@ -7,13 +7,13 @@ This is the #1 most frequent failure this week. * mozilla-central: 1 ## Platform and build breakdown: -* linux1804: 1 +* mac64: 1 * debug: 1 ## Table -| |**no_variant**| +| |**spi-nw**| |---|:-:| -|**linux1804-x86/debug**|1| +|**mac64-x86_64/debug**|1| ## For more details, see: -https://treeherder.mozilla.org/intermittent-failures/bugdetails?bug=1&startday=2012-05-09&endday=2018-05-10&tree=all \ No newline at end of file +https://treeherder.mozilla.org/intermittent-failures/bugdetails?bug=1&startday=2022-05-09&endday=2025-05-10&tree=all \ No newline at end of file diff --git a/tests/intermittents_commenter/expected_comment_with_5_failures.text b/tests/intermittents_commenter/expected_comment_with_5_failures.text index d5ff759c687..2df8dcb8777 100644 --- a/tests/intermittents_commenter/expected_comment_with_5_failures.text +++ b/tests/intermittents_commenter/expected_comment_with_5_failures.text @@ -1,5 +1,5 @@ ## Summary -5 failures in 10 pushes (0.5 failures/push) were associated with this bug in the last 7 days. +5 failures in 23 pushes (0.217 failures/push) were associated with this bug in the last 7 days. This is the #1 most frequent failure this week. @@ -7,24 +7,16 @@ This is the #1 most frequent failure this week. * mozilla-central: 5 ## Platform and build breakdown: -* linux1804: 2 - * debug: 1 - * opt: 1 -* mac1015: 1 - * debug: 1 -* mac1120: 1 - * debug: 1 -* windows7-32: 1 - * debug: 1 +* linux64: 3 + * debug: 3 +* mac64: 2 + * debug: 2 ## Table -| |**headless**|**no_variant**| -|---|:-:|:-:| -|**linux1804-x86/debug**| |1| -|**linux1804-x86/opt**| |1| -|**mac1015-x86_64/debug**| |1| -|**mac1120-x86_64/debug**|1| | -|**windows7-32-x86/debug**|1| | +| |**headless**|**spi-nw**|**swr**| +|---|:-:|:-:|:-:| +|**linux64-x86_64/debug**|2|1| | +|**mac64-x86_64/debug**| |1|1| ## For more details, see: -https://treeherder.mozilla.org/intermittent-failures/bugdetails?bug=1&startday=2012-05-09&endday=2018-05-10&tree=all \ No newline at end of file +https://treeherder.mozilla.org/intermittent-failures/bugdetails?bug=1&startday=2022-05-09&endday=2025-05-10&tree=all \ No newline at end of file diff --git a/tests/intermittents_commenter/test_commenter.py b/tests/intermittents_commenter/test_commenter.py index 7221c9d51e6..5d053ac11b4 100644 --- a/tests/intermittents_commenter/test_commenter.py +++ b/tests/intermittents_commenter/test_commenter.py @@ -6,8 +6,8 @@ @responses.activate def test_intermittents_commenter(bug_data, mock_test_variants_firefoxci_request): - startday = "2012-05-09" - endday = "2018-05-10" + startday = "2022-05-09" + endday = "2025-05-10" alt_startday = startday alt_endday = endday @@ -46,8 +46,8 @@ def test_intermittents_commenter(bug_data, mock_test_variants_firefoxci_request) def test_intermittents_commenter_with_failures( bug_data_with_5_failures, mock_test_variants_firefoxci_request ): - startday = "2012-05-09" - endday = "2018-05-10" + startday = "2022-05-09" + endday = "2025-05-10" alt_startday = startday alt_endday = endday diff --git a/tests/log_parser/test_tasks.py b/tests/log_parser/test_tasks.py index 4dbea058220..dd985ca2eda 100644 --- a/tests/log_parser/test_tasks.py +++ b/tests/log_parser/test_tasks.py @@ -15,13 +15,14 @@ def jobs_with_local_log(activate_responses): sample_data = SampleData() url = add_log_response( - "mozilla-inbound_ubuntu64_vm-debug_test-mochitest-other-bm53-tests1-linux-build122.txt.gz" + "mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138.txt.gz" ) job = sample_data.job_data[0] # substitute the log url with a local url job["job"]["log_references"][0]["url"] = url + job["job"]["log_references"][0]["name"] = "live_backing_log" return [job] @@ -66,6 +67,7 @@ def test_create_error_summary( assert set(failure_line.keys()) == expected_keys + @pytest.mark.django_db @patch( "treeherder.model.error_summary.get_error_search_term_and_path", diff --git a/tests/perf/auto_perf_sheriffing/test_backfill_reports/test_identify_retriggerables.py b/tests/perf/auto_perf_sheriffing/test_backfill_reports/test_identify_retriggerables.py index 97a7db8b9e5..be22380bae0 100644 --- a/tests/perf/auto_perf_sheriffing/test_backfill_reports/test_identify_retriggerables.py +++ b/tests/perf/auto_perf_sheriffing/test_backfill_reports/test_identify_retriggerables.py @@ -66,8 +66,8 @@ def test_identify_retriggerables_selects_all_data_points(gapped_performance_data min_push_timestamp = min(push_timestamps) max_push_timestamp = max(push_timestamps) - assert datetime.datetime(year=2013, month=11, day=12) <= min_push_timestamp - assert max_push_timestamp <= datetime.datetime(year=2013, month=11, day=14) + assert datetime.datetime(year=2025, month=2, day=27) <= min_push_timestamp + assert max_push_timestamp <= datetime.datetime(year=2025, month=2, day=27, hour=14, minute=41, second=1) def test_identify_retriggerables_selects_even_single_data_point( @@ -92,6 +92,6 @@ def test_identify_retriggerables_doesnt_select_out_of_range_data_points( job_ids_to_retrigger = set(map(get_key("job_id"), data_points_to_retrigger)) - assert len(data_points_to_retrigger) == 1 + assert len(data_points_to_retrigger) == 2 assert NON_RETRIGGERABLE_JOB_ID not in job_ids_to_retrigger - assert {4} == job_ids_to_retrigger + assert {4, 31} == job_ids_to_retrigger diff --git a/tests/push_health/test_builds.py b/tests/push_health/test_builds.py index 56fb82f8264..4445f129699 100644 --- a/tests/push_health/test_builds.py +++ b/tests/push_health/test_builds.py @@ -17,5 +17,5 @@ def test_get_build_failures( result, build_failures, in_progress = get_build_failures(test_push) assert in_progress == 0 - assert result == "fail" - assert len(build_failures) == 2 + assert result == "none" + assert len(build_failures) == 0 diff --git a/tests/sample_data/artifacts/text_log_summary.json b/tests/sample_data/artifacts/text_log_summary.json index 2a33adcc03e..7954b1257fa 100644 --- a/tests/sample_data/artifacts/text_log_summary.json +++ b/tests/sample_data/artifacts/text_log_summary.json @@ -18,7 +18,7 @@ "linenumber": 8157 } ], - "logurl": "http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/2015/04/2015-04-15-03-02-06-mozilla-central/mozilla-central_snowleopard_test-mochitest-2-bm107-tests1-macosx-build128.txt.gz" + "logurl": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YxJCaWl3Shu4FBJrKG2K1Q/runs/0/artifacts/public/logs/live_backing.log.gz" }, "type": "json", "id": 8217463, diff --git a/tests/sample_data/bug_list.json b/tests/sample_data/bug_list.json index 3989b0a5adf..c04feaad85a 100644 --- a/tests/sample_data/bug_list.json +++ b/tests/sample_data/bug_list.json @@ -9,19 +9,19 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "RESOLVED", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { "status": "NEW", "id": 453969, - "summary": "Intermittent test_bug382113.html | Child got load event - got false, expected true", + "summary": "Intermittent browser/base/content/test/performance/browser_startup_flicker.js | single tracking bug", "dupe_of": null, "duplicates": [], "cf_crash_signature": "", - "keywords": ["intermittent-failure"], + "keywords": ["intermittent-failure", "intermittent-testcase"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -33,7 +33,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -45,7 +45,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -57,7 +57,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -69,7 +69,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -81,7 +81,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -93,7 +93,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -105,7 +105,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -117,7 +117,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -129,7 +129,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-01-01 00:00:00", + "last_change_time": "2024-01-01 00:00:00", "whiteboard": "text" }, { @@ -141,7 +141,7 @@ "cf_crash_signature": "", "keywords": ["ateam-marionette-intermittent", "intermittent-failure"], "resolution": "", - "last_change_time": "2014-08-17T23:15:38", + "last_change_time": "2024-08-17T23:15:38", "whiteboard": "text" }, { @@ -153,7 +153,7 @@ "cf_crash_signature": "", "keywords": ["ateam-marionette-intermittent", "intermittent-failure"], "resolution": "", - "last_change_time": "2014-10-29T20:57:46", + "last_change_time": "2024-10-29T20:57:46", "whiteboard": "text" }, { @@ -165,7 +165,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-10-23T13:35:06", + "last_change_time": "2024-10-23T13:35:06", "whiteboard": "text" }, { @@ -177,7 +177,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2014-10-29T20:57:46", + "last_change_time": "2024-10-29T20:57:46", "whiteboard": "text" }, { @@ -189,7 +189,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { @@ -201,7 +201,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { @@ -213,7 +213,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { @@ -225,7 +225,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { @@ -237,7 +237,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { @@ -249,7 +249,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { @@ -261,7 +261,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { @@ -273,7 +273,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { @@ -285,7 +285,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { @@ -297,7 +297,7 @@ "cf_crash_signature": "", "keywords": ["intermittent-failure"], "resolution": "", - "last_change_time": "2016-07-25T01:04:15Z", + "last_change_time": "2023-07-25T01:04:15Z", "whiteboard": "text" }, { diff --git a/tests/sample_data/bugscache_population/run-0.json b/tests/sample_data/bugscache_population/run-0.json index dd5711146da..f5bb22e1709 100644 --- a/tests/sample_data/bugscache_population/run-0.json +++ b/tests/sample_data/bugscache_population/run-0.json @@ -51,7 +51,7 @@ { "cf_crash_signature": "", "status": "NEW", - "summary": "Intermittent devtools/client/netmonitor/test/browser_net_resend_cors.js | Test timed out -", + "summary": "Intermittent devtools/client/netmonitor/test/browser_net_resend_cors.js | single tracking bug", "id": 1736534, "resolution": "", "last_change_time": "2021-11-01T06:16:02Z", diff --git a/tests/sample_data/graphql/query_node.json b/tests/sample_data/graphql/query_node.json deleted file mode 100644 index 86e625ae779..00000000000 --- a/tests/sample_data/graphql/query_node.json +++ /dev/null @@ -1,170 +0,0 @@ -[ - { - "alias": null, - "arguments": [ - { - "kind": "Argument", - "name": { - "kind": "Name", - "value": "result" - }, - "value": { - "kind": "StringValue", - "value": "testfailed" - } - }, - { - "kind": "Argument", - "name": { - "kind": "Name", - "value": "tier_Lt" - }, - "value": { - "kind": "IntValue", - "value": "3" - } - } - ], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "jobs" - }, - "selection_set": { - "kind": "SelectionSet", - "selections": [ - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "edges" - }, - "selection_set": { - "kind": "SelectionSet", - "selections": [ - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "node" - }, - "selection_set": { - "kind": "SelectionSet", - "selections": [ - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "failureClassification" - }, - "selection_set": { - "kind": "SelectionSet", - "selections": [ - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "name" - }, - "selection_set": null - } - ] - } - }, - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "jobType" - }, - "selection_set": { - "kind": "SelectionSet", - "selections": [ - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "symbol" - }, - "selection_set": null - }, - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "name" - }, - "selection_set": null - }, - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "jobGroup" - }, - "selection_set": { - "kind": "SelectionSet", - "selections": [ - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "symbol" - }, - "selection_set": null - }, - { - "alias": null, - "arguments": [], - "directives": [], - "kind": "Field", - "name": { - "kind": "Name", - "value": "name" - }, - "selection_set": null - } - ] - } - } - ] - } - } - ] - } - } - ] - } - } - ] - } - } -] diff --git a/tests/sample_data/job_data.txt b/tests/sample_data/job_data.txt index 2ec80d31f07..883a5d4b564 100644 --- a/tests/sample_data/job_data.txt +++ b/tests/sample_data/job_data.txt @@ -1,304 +1,122 @@ -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384353546, "start_timestamp": 1384353553, "job_guid": "f1c75261017c7c5ce3000931dce4c442fe0a1297", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_linux-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb-debug/1384353546/mozilla-release_linux-debug_dep-bm62-build1-build17.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-132", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384364989}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384353546, "start_timestamp": 1384353555, "job_guid": "9abb6f7d54a49d763c584926377f09835c5e1a32", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb/1384353546/mozilla-release_emulator-jb_dep-bm58-build1-build29.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-462", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384364662}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358798, "job_guid": "f2702654e8169714bc8298e7a036e357fdba8f73", "name": "Inari Device Image Build", "reference_data_name": "mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-inari/1384358790/mozilla-release_inari_dep-bm57-build1-build17.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-004", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "firefox", "end_timestamp": 1384365240}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358800, "job_guid": "eea35c369c7a4914baea4216d04def59f6ea2a26", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_linux-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb-debug/1384358790/mozilla-release_linux-debug_dep-bm57-build1-build12.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-117", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384370888}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358801, "job_guid": "197eea8827f6c72f2727c41508dceb5ddcf95b66", "name": "Nexus 4 Device Image Build", "reference_data_name": "mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-nexus-4/1384358790/mozilla-release_nexus-4_dep-bm57-build1-build20.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-020", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "firefox", "end_timestamp": 1384366248}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358801, "job_guid": "3f317a2869250b7f85876ac0cdc885923897ded2", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-debug/1384358790/mozilla-release_emulator-debug_dep-bm57-build1-build18.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-169", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384366258}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "66196b3a00613cbfdce94d19abcf1e1b1920d23c", "name": "Hamachi Device Image Build", "reference_data_name": "mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi/1384358790/mozilla-release_hamachi_dep-bm61-build1-build20.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-067", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384365020}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "418c120f51dcdf4c2166c8621e69e450dfc068c0", "name": "Unagi Device Image Build", "reference_data_name": "mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-unagi/1384358790/mozilla-release_unagi_dep-bm61-build1-build21.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-199", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "firefox", "end_timestamp": 1384365992}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "d067152b725dd39fab7040a5813f5fad39638d2d", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator/1384358790/mozilla-release_emulator_dep-bm84-build1-build1.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ix-027", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384366027}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "d089a64346a9a8f3c06fd0f5df6bb90023069cea", "name": "Helix Device Image Build", "reference_data_name": "mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-helix/1384358790/mozilla-release_helix_dep-bm82-build1-build0.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-centos6-hp-008", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "firefox", "end_timestamp": 1384364297}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358812, "job_guid": "da9e2cb9511e574521654d10f98d82aa8f8f8673", "name": "Leo Device Image Build", "reference_data_name": "mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-leo/1384358790/mozilla-release_leo_dep-bm82-build1-build2.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-centos6-hp-019", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "firefox", "end_timestamp": 1384364591}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384358790, "start_timestamp": 1384358831, "job_guid": "d6cd47d87aeca666fbf9ea1e4422d9935fc305da", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi_eng/1384358790/mozilla-release_hamachi_eng_dep-bm65-build1-build24.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-475", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "firefox", "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363320, "start_timestamp": 1384363321, "job_guid": "88b64ce5a69f27d8528b7ef9e7b7683c942edc60", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb/1384358790/mozilla-release_emulator-jb_dep-bm85-build1-build3.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "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": "firefox", "end_timestamp": 1384371295}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384363754, "start_timestamp": 1384363764, "job_guid": "bf82ac43a95eb48b7fec8ed9d583c63deba47e82", "name": "Gaia UI Test", "reference_data_name": "ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384358790/mozilla-release_ubuntu64_vm-linux1804-64_test-gaia-ui-test-bm51-tests1-linux-build37.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-014", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "firefox", "end_timestamp": 1384364680}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384363754, "start_timestamp": 1384363770, "job_guid": "c0c0c1bfe777a45700218186f020363b513d65c9", "name": "Mochitest", "reference_data_name": "ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384358790/mozilla-release_ubuntu64_vm-linux1804-64_test-mochitest-1-bm52-tests1-linux-build4.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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": 1384365120}, "resultset_id": 4, "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363894, "job_guid": "e4b68da60b511cada9e3e113a530a4f15691aabf", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb/1384363890/mozilla-release_emulator-jb_dep-bm85-build1-build4.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-centos6-hp-007", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373222}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363894, "job_guid": "029a67049ad5acfa87fb2963ce12ac464b315d7f", "name": "Leo Device Image Build", "reference_data_name": "mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-leo/1384363890/mozilla-release_leo_dep-bm85-build1-build0.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ix-030", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "firefox", "end_timestamp": 1384370564}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363905, "job_guid": "cf955463e9e240110b9006e26138654261de592f", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_linux-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb-debug/1384363890/mozilla-release_linux-debug_dep-bm63-build1-build23.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-088", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384375379}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363910, "job_guid": "762a0395eb90d279896a60af66760948ef778c0f", "name": "Hamachi Device Image Build", "reference_data_name": "mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi/1384363890/mozilla-release_hamachi_dep-bm82-build1-build3.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-centos6-hp-015", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384369129}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363912, "job_guid": "8e9d00f5877cf4affedd6b20bbab8f256252fae3", "name": "Unagi Device Image Build", "reference_data_name": "mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-unagi/1384363890/mozilla-release_unagi_dep-bm61-build1-build22.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-131", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "firefox", "end_timestamp": 1384370000}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "7b22625a0492a9f89b0cb0cb0105aed6ccb0e3cd", "name": "Helix Device Image Build", "reference_data_name": "mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-helix/1384363890/mozilla-release_helix_dep-bm86-build1-build0.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ix-028", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "firefox", "end_timestamp": 1384371149}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "fd7d498ad2de6b1605c3a478e61080d7830158eb", "name": "Nexus 4 Device Image Build", "reference_data_name": "mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-nexus-4/1384363890/mozilla-release_nexus-4_dep-bm86-build1-build4.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ix-033", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "firefox", "end_timestamp": 1384371245}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "640aa817f5248f4db81c64fb43f666df454800c4", "name": "Inari Device Image Build", "reference_data_name": "mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-inari/1384363890/mozilla-release_inari_dep-bm64-build1-build25.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-457", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "firefox", "end_timestamp": 1384370162}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363922, "job_guid": "4a91706ef9cb406f5364754fcfefa953c1d0b327", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-debug/1384363890/mozilla-release_emulator-debug_dep-bm86-build1-build4.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-centos6-hp-012", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384370242}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363923, "job_guid": "d71af093f00f97e752accbbf7916fb49e30ea9e7", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi_eng/1384363890/mozilla-release_hamachi_eng_dep-bm64-build1-build22.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-344", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384369973}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384363890, "start_timestamp": 1384363923, "job_guid": "6ff5576451c16d382f5159f60ae7726f7dd34364", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator/1384363890/mozilla-release_emulator_dep-bm64-build1-build26.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-354", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384370465}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364494, "job_guid": "8dc0ef35aa38e9c4397e18d3193544267ef54aed", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi_eng/1384364489/mozilla-release_hamachi_eng_dep-bm84-build1-build3.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ix-035", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384370626}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364494, "job_guid": "fee06deb99c38d10fa7592a0eb05bf41cdb3f685", "name": "Helix Device Image Build", "reference_data_name": "mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-helix/1384364489/mozilla-release_helix_dep-bm84-build1-build3.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ix-032", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "firefox", "end_timestamp": 1384370942}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364495, "job_guid": "a6fac5b7ac420496ab593d44f00594c65d11d4ab", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-debug/1384364489/mozilla-release_emulator-debug_dep-bm84-build1-build3.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-centos6-hp-006", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371153}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364495, "job_guid": "bb0d9c35af106ada7dd2da14e6c4613be343775b", "name": "Leo Device Image Build", "reference_data_name": "mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-leo/1384364489/mozilla-release_leo_dep-bm84-build1-build3.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ix-037", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "firefox", "end_timestamp": 1384371292}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364505, "job_guid": "8bac3f4654d57f8eb15dc85034c41b1e0f9e0e1e", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb/1384364489/mozilla-release_emulator-jb_dep-bm63-build1-build18.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-022", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384376096}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364512, "job_guid": "8fd74233724900662e03984c6d913807508597fe", "name": "Unagi Device Image Build", "reference_data_name": "mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-unagi/1384364489/mozilla-release_unagi_dep-bm61-build1-build23.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-159", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "firefox", "end_timestamp": 1384371182}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364531, "job_guid": "ef3c1c359e44d27972cc833469b64990ee6bedeb", "name": "Inari Device Image Build", "reference_data_name": "mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-inari/1384364489/mozilla-release_inari_dep-bm65-build1-build24.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-471", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "firefox", "end_timestamp": 1384371120}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364533, "job_guid": "9298fafb5cb2a20835451fffb6f2dc3b6a065333", "name": "Nexus 4 Device Image Build", "reference_data_name": "mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-nexus-4/1384364489/mozilla-release_nexus-4_dep-bm58-build1-build16.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-430", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "firefox", "end_timestamp": 1384371546}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364533, "job_guid": "1e54f7dc9c67d644061be30d41ba89452f1fd94a", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_linux-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb-debug/1384364489/mozilla-release_linux-debug_dep-bm62-build1-build18.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-053", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384375870}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364534, "job_guid": "6b1441fac7fa9b05ff20e0ad22157199dc7675e1", "name": "Hamachi Device Image Build", "reference_data_name": "mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi/1384364489/mozilla-release_hamachi_dep-bm58-build1-build17.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-419", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384371273}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384364490, "start_timestamp": 1384364534, "job_guid": "7be5f3ce34a67238d0a54b24f8484d1cfd1270ee", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator/1384364489/mozilla-release_emulator_dep-bm58-build1-build22.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-441", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371422}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365390, "job_guid": "e8027a571320e3c81feb2f869ccb7bfb2498e2d5", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb/1384365389/mozilla-release_emulator-jb_dep-bm86-build1-build1.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-centos6-hp-013", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374937}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365391, "job_guid": "edef5d7ef58c3e9c7750765e217d52b6d382c9dd", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator/1384365389/mozilla-release_emulator_dep-bm65-build1-build22.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-475", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372135}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365391, "job_guid": "6fbf86ed6ab2d0736a30680bed4f6f6f3c0c8c63", "name": "Unagi Device Image Build", "reference_data_name": "mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-unagi/1384365389/mozilla-release_unagi_dep-bm65-build1-build26.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-329", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "firefox", "end_timestamp": 1384372359}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365412, "job_guid": "c446b15a60cd6f24209e9757544693c2a249b8b4", "name": "Hamachi Device Image Build", "reference_data_name": "mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi/1384365389/mozilla-release_hamachi_dep-bm61-build1-build21.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-067", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384366589}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365412, "job_guid": "dc9a8b88da133d5dfa6fe445488361c4615d9694", "name": "Nexus 4 Device Image Build", "reference_data_name": "mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-nexus-4/1384365389/mozilla-release_nexus-4_dep-bm82-build1-build2.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-centos6-hp-019", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "firefox", "end_timestamp": 1384371760}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365420, "job_guid": "d7bc254e9f3091b5adad0a857472feba39b333fb", "name": "Inari Device Image Build", "reference_data_name": "mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-inari/1384365389/mozilla-release_inari_dep-bm57-build1-build18.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-068", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "firefox", "end_timestamp": 1384371469}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365433, "job_guid": "5b685dcf4a6263e679acc4ca90093adfe9390ac8", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi_eng/1384365389/mozilla-release_hamachi_eng_dep-bm62-build1-build18.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-132", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384371426}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365433, "job_guid": "84d04f66cd2d9442b38a63fd1298e6044efa9881", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-debug/1384365389/mozilla-release_emulator-debug_dep-bm58-build1-build20.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-462", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373089}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365571, "job_guid": "3432cd8c502ff37737c27569f251218f0a10d3ef", "name": "Leo Device Image Build", "reference_data_name": "mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-leo/1384365389/mozilla-release_leo_dep-bm64-build1-build24.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-319", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "firefox", "end_timestamp": 1384371980}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365389, "start_timestamp": 1384365584, "job_guid": "f31e5524235d6428dfbd5223bb5dd7f4d3dc549e", "name": "Helix Device Image Build", "reference_data_name": "mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-helix/1384365389/mozilla-release_helix_dep-bm57-build1-build19.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-114", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "firefox", "end_timestamp": 1384372038}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384365997, "job_guid": "0b6dccf64241b0a331ea62e79d816deb4980bd7c", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb/1384365990/mozilla-release_emulator-jb_dep-bm61-build1-build22.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-187", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384377210}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366043, "job_guid": "6fbdedaa266efac01132ef46dd446080ea9ae6ef", "name": "Helix Device Image Build", "reference_data_name": "mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-helix/1384365990/mozilla-release_helix_dep-bm61-build1-build21.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-199", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "firefox", "end_timestamp": 1384372756}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366057, "job_guid": "5ce54665d443edc2b8572e347de42632e0bc8273", "name": "Unagi Device Image Build", "reference_data_name": "mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-unagi/1384365990/mozilla-release_unagi_dep-bm84-build1-build1.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ix-027", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "firefox", "end_timestamp": 1384372987}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366116, "job_guid": "fcbe5f0a1631c39a783a4388e97616a5462b5e88", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi_eng/1384365990/mozilla-release_hamachi_eng_dep-bm61-build1-build19.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-076", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384372365}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366193, "job_guid": "6c7ce8d04cf225d363dbe6a119f1645885e168bf", "name": "Inari Device Image Build", "reference_data_name": "mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-inari/1384365990/mozilla-release_inari_dep-bm57-build1-build19.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-061", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "firefox", "end_timestamp": 1384372394}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366195, "job_guid": "160f687ba793208ce24d3c7ef5833684d01f3f06", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator/1384365990/mozilla-release_emulator_dep-bm63-build1-build23.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-021", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372969}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366196, "job_guid": "fb0f79e4fa832de68e391d673cb99c65d2e22712", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-debug/1384365990/mozilla-release_emulator-debug_dep-bm57-build1-build19.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-163", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373573}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366199, "job_guid": "997d69db9a264372b2bae34d113dce320f1c02d9", "name": "Nexus 4 Device Image Build", "reference_data_name": "mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-nexus-4/1384365990/mozilla-release_nexus-4_dep-bm61-build1-build22.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-100", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "firefox", "end_timestamp": 1384373412}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366208, "job_guid": "e027e926c37b0b8a65cbbced72b7bae9e74c0243", "name": "Leo Device Image Build", "reference_data_name": "mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-leo/1384365990/mozilla-release_leo_dep-bm57-build1-build13.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-102", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "firefox", "end_timestamp": 1384373439}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384365990, "start_timestamp": 1384366248, "job_guid": "e2f44911df5a493d26873aa95b6349bec242f69f", "name": "Hamachi Device Image Build", "reference_data_name": "mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi/1384365990/mozilla-release_hamachi_dep-bm58-build1-build18.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-423", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384372284}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366612, "job_guid": "7069f711266b7c7bf9d68764a632b4640786be22", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_linux-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb-debug/1384366603/mozilla-release_linux-debug_dep-bm82-build1-build1.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-centos6-hp-017", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384376996}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366618, "job_guid": "9fab649685fdacf97919fca9cb5c8bc2411f5a8d", "name": "Hamachi Device Image Build", "reference_data_name": "mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi/1384366603/mozilla-release_hamachi_dep-bm61-build1-build22.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-107", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384371962}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366630, "job_guid": "f97ca2acd7a5356c74bc5e44fc5f6efb14b778bc", "name": "Nexus 4 Device Image Build", "reference_data_name": "mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-nexus-4/1384366603/mozilla-release_nexus-4_dep-bm65-build1-build17.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-400", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "firefox", "end_timestamp": 1384374223}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366631, "job_guid": "112fe90234d6bf31bd30b0106b0d61b2e50dc252", "name": "Leo Device Image Build", "reference_data_name": "mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-leo/1384366603/mozilla-release_leo_dep-bm65-build1-build22.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-403", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "firefox", "end_timestamp": 1384373097}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366634, "job_guid": "a1e0678857da80262615533483b10f4e81a95e55", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-debug/1384366603/mozilla-release_emulator-debug_dep-bm62-build1-build19.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-057", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373859}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366647, "job_guid": "37246dcb41a859440bc8ee67fbfe652abfcdc5f5", "name": "Unagi Device Image Build", "reference_data_name": "mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-unagi/1384366603/mozilla-release_unagi_dep-bm57-build1-build18.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-169", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "firefox", "end_timestamp": 1384372653}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366647, "job_guid": "7f0faa2fad265d059beb19697dc31b41d4b86a17", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator/1384366603/mozilla-release_emulator_dep-bm57-build1-build15.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-109", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373325}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366850, "job_guid": "2892e823506fc0c9243e547796b0ad5b5e9faad7", "name": "Helix Device Image Build", "reference_data_name": "mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-helix/1384366603/mozilla-release_helix_dep-bm57-build1-build20.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-028", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "firefox", "end_timestamp": 1384373117}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366870, "job_guid": "a27abd8ffd3c695fb0c95b598ab8af9d203a7997", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi_eng/1384366603/mozilla-release_hamachi_eng_dep-bm61-build1-build20.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-175", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384373167}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384366604, "start_timestamp": 1384366931, "job_guid": "fe27632e59c7f1df3cf8453647b210a45a4825fe", "name": "Inari Device Image Build", "reference_data_name": "mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-inari/1384366603/mozilla-release_inari_dep-bm64-build1-build26.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-455", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "firefox", "end_timestamp": 1384372931}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367721, "job_guid": "955d841b82f384e8cd183b3ec9b25a86a67768ab", "name": "Unagi Device Image Build", "reference_data_name": "mozilla-release_unagi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-unagi/1384367508/mozilla-release_unagi_dep-bm65-build1-build27.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Unagi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-477", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Unagi Device Image", "product_name": "firefox", "end_timestamp": 1384374671}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367792, "job_guid": "f96127cb4fe53669064f2516a59f55f08e6afdfe", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-debug/1384367508/mozilla-release_emulator-debug_dep-bm64-build1-build25.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-306", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384375191}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367793, "job_guid": "29647ce479a2eba6a1a1273b866b8262ff1e0e5c", "name": "Helix Device Image Build", "reference_data_name": "mozilla-release_helix_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-helix/1384367508/mozilla-release_helix_dep-bm58-build1-build30.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Helix", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-302", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Helix Device Image", "product_name": "firefox", "end_timestamp": 1384374180}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367797, "job_guid": "c3599febefed92e844c1e6d91caae073f4aaa352", "name": "Inari Device Image Build", "reference_data_name": "mozilla-release_inari_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-inari/1384367508/mozilla-release_inari_dep-bm64-build1-build27.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Inari", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-370", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Inari Device Image", "product_name": "firefox", "end_timestamp": 1384374093}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367797, "job_guid": "747c45a8c18b672e411506bc352e73df94e3898a", "name": "Linux x64 Tsan Build", "reference_data_name": "mozilla-release_emulator_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator/1384367508/mozilla-release_emulator_dep-bm64-build1-build27.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-468", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384374278}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367798, "job_guid": "12f8bdddd5381217f3b64a49d5358b68bd959706", "name": "Leo Device Image Build", "reference_data_name": "mozilla-release_leo_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-leo/1384367508/mozilla-release_leo_dep-bm64-build1-build25.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Leo", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-479", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Leo Device Image", "product_name": "firefox", "end_timestamp": 1384374051}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367798, "job_guid": "eec5154a01048ad2c7b46e201e7c3f8e3fd9b5f4", "name": "Hamachi Device Image Build (Engineering)", "reference_data_name": "mozilla-release_hamachi_eng_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi_eng/1384367508/mozilla-release_hamachi_eng_dep-bm64-build1-build23.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-304", "reason": "scheduler", "result": "success", "job_symbol": "Be", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384374295}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367802, "job_guid": "977e434e6b172d88a87284f6dd4ebf7171f52994", "name": "Nexus 4 Device Image Build", "reference_data_name": "mozilla-release_nexus-4_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-nexus-4/1384367508/mozilla-release_nexus-4_dep-bm64-build1-build29.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Nexus 4", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-326", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Nexus 4 Device Image", "product_name": "firefox", "end_timestamp": 1384375157}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384367508, "start_timestamp": 1384367803, "job_guid": "baad3525cd5bec48c997b2ce23812c8e8ccb1cc7", "name": "Hamachi Device Image Build", "reference_data_name": "mozilla-release_hamachi_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-hamachi/1384367508/mozilla-release_hamachi_dep-bm64-build1-build22.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "Hamachi", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-448", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": "Hamachi Device Image", "product_name": "firefox", "end_timestamp": 1384373832}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367836, "start_timestamp": 1384367838, "job_guid": "91952e70a2d4bacee6a9074a4a660e78fbbfe006", "name": "Gaia UI Test", "reference_data_name": "ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384363890/mozilla-release_ubuntu64_vm-linux1804-64_test-gaia-ui-test-bm52-tests1-linux-build14.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-089", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "firefox", "end_timestamp": 1384368794}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367836, "start_timestamp": 1384367838, "job_guid": "3bc00a63f22f13ee61696cdcd8eabc184172f56b", "name": "Mochitest", "reference_data_name": "ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384363890/mozilla-release_ubuntu64_vm-linux1804-64_test-mochitest-1-bm67-tests1-linux-build12.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-042", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384369226}, "resultset_id": 3, "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367957, "start_timestamp": 1384367960, "job_guid": "1293510622e77a1454be3b4ea70b09464a2a68a1", "name": "Mochitest", "reference_data_name": "ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384364489/mozilla-release_ubuntu64_vm-linux1804-64_test-mochitest-1-bm53-tests1-linux-build11.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-312", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384369353}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384367957, "start_timestamp": 1384367960, "job_guid": "ceadb36844677d753f2c2842ab7347ee28a9aec7", "name": "Gaia UI Test", "reference_data_name": "ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384364489/mozilla-release_ubuntu64_vm-linux1804-64_test-gaia-ui-test-bm53-tests1-linux-build35.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-393", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "firefox", "end_timestamp": 1384368866}, "resultset_id": 6, "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "option_collection": {"debug": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-lion-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "option_collection": {"debug": true}, "who": "tests-mozilla-release-snowleopard-debug-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384370777, "start_timestamp": 1384370782, "job_guid": "53028b7b1ffb251fda504d5ecb4b0505ed307bf0", "name": "Gaia UI Test", "reference_data_name": "ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384365389/mozilla-release_ubuntu64_vm-linux1804-64_test-gaia-ui-test-bm53-tests1-linux-build36.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-417", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "firefox", "end_timestamp": 1384371684}, "resultset_id": 5, "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384370777, "start_timestamp": 1384370782, "job_guid": "8fc2d79c8ed75b798ca9a9b0fec7909aeee1cab9", "name": "Mochitest", "reference_data_name": "ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384365389/mozilla-release_ubuntu64_vm-linux1804-64_test-mochitest-1-bm53-tests1-linux-build12.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-350", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "mac1015", "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": "live_backing_log"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-lion-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "option_collection": {"opt": true}, "who": "sendchange-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-snowleopard-opt-unittest", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1015", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "mac1120", "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": "live_backing_log"}], "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": "mac1120", "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": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384371138, "start_timestamp": 1384371140, "job_guid": "45a36c12fd02528e5bd7171f05003c568700a080", "name": "Gaia UI Test", "reference_data_name": "ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384365990/mozilla-release_ubuntu64_vm-linux1804-64_test-gaia-ui-test-bm54-tests1-linux-build25.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-432", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "firefox", "end_timestamp": 1384372056}, "resultset_id": 7, "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384371138, "start_timestamp": 1384371141, "job_guid": "e0b112594343e9e9b980072d2189ebdaaec4173b", "name": "Mochitest", "reference_data_name": "ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384365990/mozilla-release_ubuntu64_vm-linux1804-64_test-mochitest-1-bm54-tests1-linux-build13.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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": "M", "group_name": "Mochitest", "product_name": "firefox", "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372157, "start_timestamp": 1384372305, "job_guid": "73ab88cc17c2402c02d270b671a1894219307a05", "name": "Mochitest", "reference_data_name": "ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384366603/mozilla-release_ubuntu64_vm-linux1804-64_test-mochitest-1-bm54-tests1-linux-build14.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-326", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "end_timestamp": 1384373683}, "resultset_id": 8, "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372157, "start_timestamp": 1384372341, "job_guid": "1683a5708d4099923c9f64b22d3aa80edcccd3a3", "name": "Gaia UI Test", "reference_data_name": "ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384366603/mozilla-release_ubuntu64_vm-linux1804-64_test-gaia-ui-test-bm52-tests1-linux-build15.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-023", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "firefox", "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372817, "start_timestamp": 1384372821, "job_guid": "14504da88ea03aa81ed5a64f49d12de21a05c63e", "name": "Gaia UI Test", "reference_data_name": "ubuntu64_vm mozilla-release opt test gaia-ui-test", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384367508/mozilla-release_ubuntu64_vm-linux1804-64_test-gaia-ui-test-bm52-tests1-linux-build16.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-133", "reason": "scheduler", "result": "success", "job_symbol": "Gu", "group_name": null, "product_name": "firefox", "end_timestamp": 1384373796}, "resultset_id": 9, "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1384372817, "start_timestamp": 1384372830, "job_guid": "0152d23023685b67dcfeb3ab023788da77b8451b", "name": "Mochitest", "reference_data_name": "ubuntu64_vm mozilla-release opt test mochitest-1", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-linux64_gecko/1384367508/mozilla-release_ubuntu64_vm-linux1804-64_test-mochitest-1-bm52-tests1-linux-build5.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "tests-mozilla-release-ubuntu64_vm-linux1804-64-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-071", "reason": "scheduler", "result": "success", "job_symbol": "M", "group_name": "Mochitest", "product_name": "firefox", "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "live_backing_log"}], "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": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740653319, "job_guid": "06beb675-73ad-4982-be95-c015f5427178/0", "name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "77cfd90441157f4a809d4b7081a5a081d293f74a", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Br62dXOtSYK-lcAV9UJxeA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "macmini-r8-146@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-146", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740655003}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652946, "job_guid": "2735304e-72ed-4a5d-ab67-0cccfe827541/0", "name": "test-macosx1470-64/debug-reftest-swr-4", "reference_data_name": "501aecb17bcf052fca3d874b49089ee43ab6d517", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/JzUwTnLtSl2rZwzM_oJ1QQ/runs/0/artifacts/public/test_info/reftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "macmini-r8-152@fakemail.com", "group_symbol": "R-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-152", "reason": "scheduled", "result": "success", "job_symbol": "R4", "group_name": "Reftests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740653123}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "01d9cc37-abcd-499c-8b2f-6e0d42d1c2de/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-3", "reference_data_name": "373a024b3b2d5dcbadbd7b5b8154485e821176c1", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AdnMN6vNSZyLL24NQtHC3g/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8449071809674708830@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8449071809674708830", "reason": "scheduled", "result": "success", "job_symbol": "bc3", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740653215}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "002f1a2f-9f7e-4460-ba6a-b2bbf6fae336/0", "name": "test-linux1804-64-qr/debug-mochitest-chrome-1proc-3", "reference_data_name": "cce761a96d3940e6d51934c04b3478d0303a63a7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AC8aL59-RGC6arK79vrjNg/runs/0/artifacts/public/test_info/mochitest-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "4701274327753787132@fakemail.com", "group_symbol": "M-1proc", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "4701274327753787132", "reason": "scheduled", "result": "success", "job_symbol": "c3", "group_name": "Mochitests with e10s disabled", "product_name": "firefox", "end_timestamp": 1740653602}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "69ef7298-de71-4ce3-8e38-2eb770bcaeb8/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-5", "reference_data_name": "15eb0d2494bcafde071a23410b640c78eeacc2c1", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ae9ymN5xTOOOOC63cLyuuA/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2446201946557482846@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2446201946557482846", "reason": "scheduled", "result": "success", "job_symbol": "dt5", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740653138}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "688ae21b-be45-4312-91e0-756482665dce/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-http3-12", "reference_data_name": "ce7b253f44c7ebf2554ac555005a753903efd45f", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/aIriG75FQxKR4HVkgmZdzg/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8451424601349392221@fakemail.com", "group_symbol": "M-http3", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8451424601349392221", "reason": "scheduled", "result": "success", "job_symbol": "dt12", "group_name": "Mochitests with http3 server", "product_name": "firefox", "end_timestamp": 1740654247}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "6aa228fc-2ff9-4f3d-8910-a278b604deff/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-9", "reference_data_name": "a3ee15910cd22022b9d8126270500cfa98534eed", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/aqIo_C_5Tz2JEKJ4tgTe_w/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6306950754761279326@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6306950754761279326", "reason": "scheduled", "result": "success", "job_symbol": "dt9", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740653182}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "692ef110-3f04-4fa6-ae46-037cafb73c41/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-11", "reference_data_name": "793ca4445decfe7a6ee00de48e9c3d5baf43b6a7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/aS7xED8ET6auRgN8r7c8QQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3888432366618509849@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3888432366618509849", "reason": "scheduled", "result": "success", "job_symbol": "bc11", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740653355}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "018dc60d-1a31-4e54-862b-f6fcd754fdef/0", "name": "test-linux1804-64-qr/debug-xpcshell-3", "reference_data_name": "cb74b57dd2733a3702ce6e6aeb0bc0d08997a6a5", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AY3GDRoxTlSGK_b811T97w/runs/0/artifacts/public/test_info/xpcshell_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6080164751976795936@fakemail.com", "group_symbol": "X", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6080164751976795936", "reason": "scheduled", "result": "success", "job_symbol": "X3", "group_name": "Xpcshell tests", "product_name": "firefox", "end_timestamp": 1740653144}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "69823b88-60a5-4567-a1b7-e326aefbbdd0/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "4ee6c6e836411baeb40165962c31c27e3419ae06", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/aYI7iGClRWeht-Mmrvu90A/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7829346262660777723@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7829346262660777723", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654486}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652941, "job_guid": "6fd2b6ce-30fc-438b-a552-74470f0bc219/0", "name": "test-linux2204-64-wayland/debug-mochitest-browser-translations", "reference_data_name": "3a719d578f60142045ca9ae1dce51f49bef4b8b0", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/b9K2zjD8Q4ulUnRHDwvCGQ/runs/0/artifacts/public/test_info/mochitest-browser-translations_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3477412036570088626@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3477412036570088626", "reason": "scheduled", "result": "success", "job_symbol": "tr8ns", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740653790}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "6fda337f-0a50-4d2e-b0bd-fbb10820f26b/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-spi-nw-7", "reference_data_name": "432646c97e2568866819a860dbc335c10a771df1", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/b9ozfwpQTS6wvfuxCCDyaw/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6997818393469255180@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6997818393469255180", "reason": "scheduled", "result": "success", "job_symbol": "dt7", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654928}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "6de108a2-1576-4c5e-9adf-4e06f24f8822/0", "name": "test-linux1804-64-qr/debug-mochitest-remote-nofis", "reference_data_name": "e4e31d790e7b18434b6d7a9aa008fd366be821ed", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/beEIohV2TF6a304G8k-IIg/runs/0/artifacts/public/test_info/mochitest-remote_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2099848636982466311@fakemail.com", "group_symbol": "M-nofis", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2099848636982466311", "reason": "scheduled", "result": "success", "job_symbol": "remote", "group_name": "Mochitests without fission enabled", "product_name": "firefox", "end_timestamp": 1740653083}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "07271eff-38a9-48ff-bd1c-55efe98213f5/0", "name": "test-linux1804-64-qr/debug-gtest-1proc", "reference_data_name": "15660ba62b53084bfa12c5d7774f97cf2876dcec", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Byce_zipSP-9HFXv6YIT9Q/runs/0/artifacts/public/logs/live_backing.log", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "1068579727392737651@fakemail.com", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "1068579727392737651", "reason": "scheduled", "result": "success", "job_symbol": "GTest-1proc", "group_name": "unknown", "product_name": "firefox", "end_timestamp": 1740654206}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "0bd56c7a-27dd-432c-8712-37b3376b7ad6/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-13", "reference_data_name": "9eb668fbd0a5efd5f34fed82ec7030a3fe9303dc", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/C9VseifdQyyHEjezN2t61g/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8097860819073474365@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8097860819073474365", "reason": "scheduled", "result": "success", "job_symbol": "dt13", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740653312}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "701e2f67-5051-455b-8cd4-a96b5f756c43/0", "name": "test-linux2204-64-wayland/debug-mochitest-plain-13", "reference_data_name": "1a54ce6c90693869f9f9915bb9624dd9f2d8335a", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cB4vZ1BRRVuM1KlrX3VsQw/runs/0/artifacts/public/test_info/mochitest-plain_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3383035640677592892@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3383035640677592892", "reason": "scheduled", "result": "testfailed", "job_symbol": "13", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740654722}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "70d579ce-6735-4001-a3e1-c8c1e806e3f4/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-12", "reference_data_name": "4a65767e525f5dc96f1097a852efe2bdf5e9701e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cNV5zmc1QAGj4cjB6Abj9A/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7445677839131449096@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7445677839131449096", "reason": "scheduled", "result": "success", "job_symbol": "bc12", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654181}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "74950abc-2d6b-4e6f-ab28-2fb00d2a6a74/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-4", "reference_data_name": "9d2134bd03c11cefab7f82e1b9fa38bebe130803", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dJUKvC1rTm-rKC-wDSpqdA/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3163579734029074969@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3163579734029074969", "reason": "scheduled", "result": "success", "job_symbol": "dt4", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740654080}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "105d7693-a331-44dc-b978-ce860af803b3/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-8", "reference_data_name": "daafe47d7406457308224e183a4f66d216bea497", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EF12k6MxRNy5eM6GCvgDsw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6389043312253043225@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6389043312253043225", "reason": "scheduled", "result": "success", "job_symbol": "bc8", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740653497}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "7926b538-f479-42ae-8aca-61de9a980c13/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-4", "reference_data_name": "4231d7ea4813b6e810864d64e9077ed6e7451af4", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eSa1OPR5Qq6KymHempgMEw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8120269072205973244@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8120269072205973244", "reason": "scheduled", "result": "success", "job_symbol": "bc4", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740653439}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652940, "job_guid": "7f6c4cb4-8c6e-4f5a-bbcf-ab6d4146c76b/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-spi-nw-12", "reference_data_name": "1a2d099fac21780633d65223465f58eb299f32c5", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/f2xMtIxuT1q7z6ttQUbHaw/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2818308210751803168@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2818308210751803168", "reason": "scheduled", "result": "success", "job_symbol": "dt12", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654586}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652941, "job_guid": "7dbca0a0-ae43-46d9-995b-af5cbf0325e7/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-14", "reference_data_name": "d2e005c529ba94b70a9d8e2615d1a0281aed527b", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/fbygoK5DRtmZW69cvwMl5w/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "4310330586107315963@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "4310330586107315963", "reason": "scheduled", "result": "success", "job_symbol": "bc14", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740653785}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652941, "job_guid": "1420fc45-bf51-4236-9c9b-2998d142b8ee/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-spi-nw-8", "reference_data_name": "37418615e443d31879c1124a06d4397c01c71f26", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FCD8Rb9RQjacmymY0UK47g/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3430091615911121287@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3430091615911121287", "reason": "scheduled", "result": "success", "job_symbol": "dt8", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654644}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652941, "job_guid": "7e93fc9f-cbf6-46a7-9d53-297bfe5afc48/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-5", "reference_data_name": "5480a835bf31b5951f4f527f9278aedcb9efaf41", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/fpP8n8v2RqedUyl7_lr8SA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "4914370547484034242@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "4914370547484034242", "reason": "scheduled", "result": "success", "job_symbol": "bc5", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654539}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652941, "job_guid": "1845db43-011f-4b4f-ae58-1aa0dc8854b6/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-7", "reference_data_name": "431613aa98da355726dd7902d96707f7cbe9a97e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GEXbQwEfS0-uWBqg3IhUtg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2455837263304429344@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2455837263304429344", "reason": "scheduled", "result": "success", "job_symbol": "bc7", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740653402}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652941, "job_guid": "1a09a82e-3a9f-4876-ae3b-d88a8ed5b52f/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-16", "reference_data_name": "cc4abee7a9940f3a7e77d9beaf4d2241e1ba9af5", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GgmoLjqfSHauO9iKjtW1Lw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "1925892093443410291@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "1925892093443410291", "reason": "scheduled", "result": "testfailed", "job_symbol": "bc16", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654738}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652941, "job_guid": "235e87e9-b9fe-4acf-911e-129078996405/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-13", "reference_data_name": "0e0f41479304b28c030c4b7208911234f8547ec2", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I16H6bn-Ss-RHhKQeJlkBQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7549311027707217090@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7549311027707217090", "reason": "scheduled", "result": "success", "job_symbol": "bc13", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740653976}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740651886, "start_timestamp": 1740652941, "job_guid": "27bb5a9a-0203-48dc-9ae9-fc0fbc36f77d/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-http3-14", "reference_data_name": "826fdbcaeb9c0bbc9dcd2439a68cbdae8b13aa6b", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/J7tamgIDSNya6fwPvDb3fQ/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3749751613547186547@fakemail.com", "group_symbol": "M-http3", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3749751613547186547", "reason": "scheduled", "result": "success", "job_symbol": "dt14", "group_name": "Mochitests with http3 server", "product_name": "firefox", "end_timestamp": 1740653797}, "revision": "27e624bb782b495a0a98f1625d758229f5da82f4"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654339, "job_guid": "3ef6cb8a-87d8-477e-a5bc-978beeaef4fd/0", "name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "e5ded7bf4f84d77abcfb432074a9f21e1e81696a", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/PvbLiofYR36lvJeL7q70_Q/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "vm-ns40cii1smn9bk6cq@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-146", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654660}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "win32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654339, "job_guid": "52662eaf-3807-43c3-b944-a72ce1fd2e3e/0", "name": "test-windows11-32-24h2/debug-mochitest-browser-chrome-10", "reference_data_name": "4164efd25169ae4911822caeb85d2c0d74a698cb", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/UmYurzgHQ8O5RKcs4f0uPg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "vm-fiqrzzyqsp6fom7um@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "win32", "os_name": "win", "architecture": "x86"}, "machine": "vm-fiqrzzyqsp6fom7umkksbwiflgsfearye7b", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740656381}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "win64", "os_name": "win", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654526, "job_guid": "125dd847-5bcb-43cb-b6c1-3aed6d619d82/0", "name": "build-signing-win64/debug", "reference_data_name": "f66ea131e92c2d45d6173a6235c2277d01a097a2", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/El3YR1vLQ8u2wTrtbWGdgg/runs/0/artifacts/public/logs/live_backing.log", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "gecko-t-signing-xfjm@fakemail.com", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "win64", "os_name": "win", "architecture": "x86_64"}, "machine": "gecko-t-signing-xfjmqisdrpan4fopyirhda", "reason": "scheduled", "result": "success", "job_symbol": "Bs", "group_name": "unknown", "product_name": "firefox", "end_timestamp": 1740654621}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "win64", "os_name": "win", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654374, "job_guid": "795e42ab-ef72-444d-8c3b-e19ed242b0d5/0", "name": "test-windows11-64-24h2/debug-web-platform-tests-reftest-swr-5", "reference_data_name": "09b0dde631af60c0786d4d632c26ea8233c4a977", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eV5Cq-9yRE2MO-Ge0kKw1Q/runs/0/artifacts/public/test_info/wpt_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "vm-kwpbcmebtnujbm1ot@fakemail.com", "group_symbol": "W-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "win64", "os_name": "win", "architecture": "x86_64"}, "machine": "vm-kwpbcmebtnujbm1otchfgkxqaq7oytralwy", "reason": "scheduled", "result": "success", "job_symbol": "Wr5", "group_name": "Web platform tests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654740}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "win64", "os_name": "win", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654383, "job_guid": "1b56ce7a-f2a8-4e93-b4e0-424bcb15b732/0", "name": "test-windows11-64-24h2/debug-mochitest-browser-chrome-12", "reference_data_name": "d67e529146aead934818674742736446cd19760a", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/G1bOevKoTpO04EJLyxW3Mg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "vm-n8lxa86srxiqkk2ss@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "win64", "os_name": "win", "architecture": "x86_64"}, "machine": "vm-n8lxa86srxiqkk2ssnamawcgrzrgmsrxe8p", "reason": "scheduled", "result": "success", "job_symbol": "bc12", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740655830}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "win64", "os_name": "win", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654386, "job_guid": "2c6d3965-d4b8-413f-881e-c3859fe945b4/0", "name": "test-windows11-64-24h2/debug-mochitest-browser-chrome-spi-nw-9", "reference_data_name": "d589ef9b09b33530b9b2ebccfaf099d62e6228ae", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/LG05ZdS4QT-IHsOFn-lFtA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "vm-godv1fyuquofgqvjc@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "win64", "os_name": "win", "architecture": "x86_64"}, "machine": "vm-godv1fyuquofgqvjc7nrfacxh4ki4tc6dsw", "reason": "scheduled", "result": "success", "job_symbol": "bc9", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654813}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654458, "job_guid": "0886da13-0de3-4305-a35a-03601c9460a8/0", "name": "test-android-em-7.0-x86_64-qr/debug-geckoview-mochitest-plain-fis-hv-5", "reference_data_name": "9e6edac85e016102691a598706b014133971417a", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CIbaEw3jQwWjWgNgHJRgqA/runs/0/artifacts/public/test_info/mochitest-plain_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3162846269579036561@fakemail.com", "group_symbol": "M-fis-hv", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "machine": "3162846269579036561", "reason": "scheduled", "result": "success", "job_symbol": "5", "group_name": "Mochitests with fission enabled and isolation strategy isolateHighValue", "product_name": "firefox", "end_timestamp": 1740654784}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654460, "job_guid": "2f18c043-18d2-4ebe-a1a4-21b22c667b5b/0", "name": "test-android-em-7.0-x86_64-qr/debug-geckoview-mochitest-plain-10", "reference_data_name": "1320c509bc7a6c3880f8cd370f9d92c1691550da", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/LxjAQxjSTr6hpCGyLGZ7Ww/runs/0/artifacts/public/test_info/mochitest-plain_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8064640209111582609@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "machine": "8064640209111582609", "reason": "scheduled", "result": "success", "job_symbol": "10", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740654670}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654462, "job_guid": "385fe62c-49b0-423c-ae77-81038906c348/0", "name": "test-android-em-7.0-x86_64-qr/debug-geckoview-mochitest-plain-nofis-ship-9", "reference_data_name": "1029d9fad1e1c48b4bc20a02ff9474d416eec4a5", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/OF_mLEmwQjyud4EDiQbDSA/runs/0/artifacts/public/test_info/mochitest-plain_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2442685699781951432@fakemail.com", "group_symbol": "M-nofis-ship", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "machine": "2442685699781951432", "reason": "scheduled", "result": "success", "job_symbol": "9", "group_name": "Mochitests with fission disabled and ship enabled", "product_name": "firefox", "end_timestamp": 1740654695}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654473, "job_guid": "5f985bae-b75b-4453-8fa1-b300e45c9b5e/0", "name": "test-android-em-7.0-x86_64-qr/debug-geckoview-reftest-swr-nofis-5", "reference_data_name": "490280f057c7d4c7d3061eb12bade88b4ec6b1d2", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/X5hbrrdbRFOPobMA5FybXg/runs/0/artifacts/public/test_info/reftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5085331767945954501@fakemail.com", "group_symbol": "R-swr-nofis", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "machine": "5085331767945954501", "reason": "scheduled", "result": "success", "job_symbol": "R5", "group_name": "Reftests without fission enabled with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654714}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654474, "job_guid": "64080d1a-d04d-4339-82ec-c614851fa7c7/0", "name": "test-android-em-7.0-x86_64-qr/debug-geckoview-mochitest-plain-aab-nofis-4", "reference_data_name": "63a59fc1392d58e5f088f62a04e68effd0341569", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZAgNGtBNQzmC7MYUhR-nxw/runs/0/artifacts/public/test_info/mochitest-plain_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8832994409368618897@fakemail.com", "group_symbol": "M-aab-nofis", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "android_x86_64", "os_name": "android", "architecture": "x86_64"}, "machine": "8832994409368618897", "reason": "scheduled", "result": "success", "job_symbol": "4", "group_name": "Mochitests without fission enabled with aab test_runner", "product_name": "firefox", "end_timestamp": 1740654930}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "00619429-f854-49dc-bfd4-63945ecfa911/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-14", "reference_data_name": "d2e005c529ba94b70a9d8e2615d1a0281aed527b", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AGGUKfhUSdy_1GOUXs-pEQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5333922933145206622@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5333922933145206622", "reason": "scheduled", "result": "success", "job_symbol": "bc14", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740655183}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "6c58a828-54c4-47e1-8df2-843c1e6b9df3/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-7", "reference_data_name": "431613aa98da355726dd7902d96707f7cbe9a97e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bFioKFTER-GN8oQ8Hmud8w/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6172273929117077895@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6172273929117077895", "reason": "scheduled", "result": "success", "job_symbol": "bc7", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654717}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "06343035-8694-4879-95f6-230e647592cb/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-6", "reference_data_name": "f3e1a769986cbebc691e2a461bdc11778399cb7e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BjQwNYaUSHmV9iMOZHWSyw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6528059575284630385@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6528059575284630385", "reason": "scheduled", "result": "success", "job_symbol": "bc6", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654794}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "084bf807-4b9c-4a1b-9a63-5eb0f4b7eb58/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-a11y", "reference_data_name": "0218243bb0aba4992eb8ad27fd72bac7f08e5c1e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CEv4B0ucShuaY16w9LfrWA/runs/0/artifacts/public/test_info/mochitest-browser-a11y_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6176437466118880516@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6176437466118880516", "reason": "scheduled", "result": "success", "job_symbol": "ba", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740654702}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "0a96d117-24a7-49c5-b32e-6c509e2b104f/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-9", "reference_data_name": "3ea710fab00e8711d393ae454e398c7204fdb71e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CpbRFySnScWzLmxQnisQTw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7793252190728849148@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7793252190728849148", "reason": "scheduled", "result": "success", "job_symbol": "bc9", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654889}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "7599ee2c-480c-41a6-9c60-2614402ec769/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-13", "reference_data_name": "9eb668fbd0a5efd5f34fed82ec7030a3fe9303dc", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dZnuLEgMQaacYCYUQC7HaQ/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3612358641995086979@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3612358641995086979", "reason": "scheduled", "result": "success", "job_symbol": "dt13", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740654787}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "7fe96285-c385-47f0-9cf5-3318beea9d60/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-4", "reference_data_name": "da9f637ee0514721b5e1b47a2c85adbc18e446cf", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/f-lihcOFR_Cc9TMYvuqdYA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3398543638012985881@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3398543638012985881", "reason": "scheduled", "result": "success", "job_symbol": "bc4", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740655164}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "119c25c1-88b0-490f-ab48-c19a2aa63824/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-9", "reference_data_name": "eeefa934caad8be834a1bc9ebcdb0927b209f4c5", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EZwlwYiwSQ-rSMGaKqY4JA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5985232930919546116@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5985232930919546116", "reason": "scheduled", "result": "success", "job_symbol": "bc9", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654923}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "7ce4456a-ee4c-468b-b884-5474520ec201/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-4", "reference_data_name": "4231d7ea4813b6e810864d64e9077ed6e7451af4", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/fORFau5MRou4hFR0Ug7CAQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6434211228447244405@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6434211228447244405", "reason": "scheduled", "result": "success", "job_symbol": "bc4", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740655206}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "17007da9-08e2-4dd7-9516-e179d6cedab4/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-12", "reference_data_name": "4a65767e525f5dc96f1097a852efe2bdf5e9701e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FwB9qQjiTdeVFuF51s7atA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7829346262660777723@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7829346262660777723", "reason": "scheduled", "result": "success", "job_symbol": "bc12", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654757}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "1b2315a5-de01-4a31-8a9d-93207cfa9810/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-http3-12", "reference_data_name": "ce7b253f44c7ebf2554ac555005a753903efd45f", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GyMVpd4BSjGKnZMgfPqYEA/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "1909988598345466393@fakemail.com", "group_symbol": "M-http3", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "1909988598345466393", "reason": "scheduled", "result": "success", "job_symbol": "dt12", "group_name": "Mochitests with http3 server", "product_name": "firefox", "end_timestamp": 1740654681}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "1f35dbe2-d334-4b40-95da-f9455564b78c/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-3", "reference_data_name": "373a024b3b2d5dcbadbd7b5b8154485e821176c1", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/HzXb4tM0S0CV2vlFVWS3jA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6150072744947875076@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6150072744947875076", "reason": "scheduled", "result": "success", "job_symbol": "bc3", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654844}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "23ef67dc-88c7-4041-9d88-c6d098c31258/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-12", "reference_data_name": "8267c02bf4b55120a52c34a591e901101c98fff7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I-9n3IjHQEGdiMbQmMMSWA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2388292275440319748@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2388292275440319748", "reason": "scheduled", "result": "success", "job_symbol": "bc12", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654782}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654504, "job_guid": "2309999b-0b16-4ea5-8419-107936340d9e/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-11", "reference_data_name": "11e7f451f46282f813f3b4ad021a2ac0a66465f3", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/IwmZmwsWTqWEGRB5NjQNng/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8018130149997149444@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8018130149997149444", "reason": "scheduled", "result": "success", "job_symbol": "bc11", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654792}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "2bb18a1c-8a6a-4c8c-bfaa-730e78ba47fc/0", "name": "test-linux1804-64-qr/debug-reftest-nogpu-4", "reference_data_name": "a50b5c693f6e0f457b9409153d402ff180b73a14", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/K7GKHIpqTIy_qnMOeLpH_A/runs/0/artifacts/public/test_info/reftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3996061910594092246@fakemail.com", "group_symbol": "R-nogpu", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3996061910594092246", "reason": "scheduled", "result": "success", "job_symbol": "R4", "group_name": "Reftests without a dedicated GPU process", "product_name": "firefox", "end_timestamp": 1740654641}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "33c057d6-c832-431d-b23d-e248ca55eb39/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-13", "reference_data_name": "dae65cd5209f1b6572deeb548058f1397af545a1", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/M8BX1sgyQx2yPeJIylXrOQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "201176657802690398@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "201176657802690398", "reason": "scheduled", "result": "success", "job_symbol": "bc13", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740655024}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "32d9641b-bcbf-4028-894d-7bd6b8116d83/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-11", "reference_data_name": "793ca4445decfe7a6ee00de48e9c3d5baf43b6a7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/MtlkG7y_QCiJTXvWuBFtgw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3804097578500226572@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3804097578500226572", "reason": "scheduled", "result": "success", "job_symbol": "bc11", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654797}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "314f2078-81c5-4cd9-a222-7ffe0469296d/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-7", "reference_data_name": "798be736c59fd5be73af35cc1533fa26d926cb3b", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/MU8geIHFTNmiIn_-BGkpbQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6267731119163937159@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6267731119163937159", "reason": "scheduled", "result": "success", "job_symbol": "bc7", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654702}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "3320b5c0-5e18-4ade-a06e-92a6e74e8b09/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-15", "reference_data_name": "934a8649f1ea5a39f95fdda6c2dc075d4505ceba", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/MyC1wF4YSt6gbpKm506LCQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2173810404771071739@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2173810404771071739", "reason": "scheduled", "result": "success", "job_symbol": "bc15", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654917}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "36a55d07-fb55-407f-a47e-3c513fb97b55/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-8", "reference_data_name": "9a4ee51337b6edf49ed9a18397d0dddaf9c5a5c7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/NqVdB_tVQH-kfjxRP7l7VQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2045379548201977026@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2045379548201977026", "reason": "scheduled", "result": "success", "job_symbol": "bc8", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740655169}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "3e0e1b58-d1ad-46ba-bce8-baa7d6adb6ba/0", "name": "test-linux1804-64-qr/debug-reftest-s-5", "reference_data_name": "9283553690cdcfa6c122ef8c9069b7c09cc6cebd", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Pg4bWNGtRrq86Lqn1q22ug/runs/0/artifacts/public/test_info/reftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6845852262874321286@fakemail.com", "group_symbol": "R-s", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6845852262874321286", "reason": "scheduled", "result": "success", "job_symbol": "R5", "group_name": "Reftests with draw snapshot", "product_name": "firefox", "end_timestamp": 1740654625}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "4903c912-3c37-496b-972a-a036648652fb/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-13", "reference_data_name": "0e0f41479304b28c030c4b7208911234f8547ec2", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SQPJEjw3SWuXKqA2ZIZS-w/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2801756355980789500@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2801756355980789500", "reason": "scheduled", "result": "success", "job_symbol": "bc13", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654836}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "499d4ebe-a904-4ee1-83e4-439f38bb07ee/0", "name": "test-linux1804-64-qr/debug-mochitest-chrome-1proc-3", "reference_data_name": "cce761a96d3940e6d51934c04b3478d0303a63a7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/SZ1OvqkETuGD5EOfOLsH7g/runs/0/artifacts/public/test_info/mochitest-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2016608266660740278@fakemail.com", "group_symbol": "M-1proc", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2016608266660740278", "reason": "scheduled", "result": "success", "job_symbol": "c3", "group_name": "Mochitests with e10s disabled", "product_name": "firefox", "end_timestamp": 1740654630}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "4ff26c46-00bb-4f6d-b487-6e08ba53092c/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-10", "reference_data_name": "4e8d4a4dec006b458ff7913e0a1cfbfdc1410716", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/T_JsRgC7T220h24IulMJLA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8349658031330264828@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8349658031330264828", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654686}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "4ef33781-3e57-41f6-9e38-bd82c4cb7292/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-8", "reference_data_name": "daafe47d7406457308224e183a4f66d216bea497", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/TvM3gT5XQfaeOL2CxMtykg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7408094251066429216@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7408094251066429216", "reason": "scheduled", "result": "success", "job_symbol": "bc8", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740655228}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "639360c2-02ca-4536-88b7-0692d22c88c4/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-6", "reference_data_name": "c0e68d6588114fbdfe4334ac908b6561fea0ffff", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Y5NgwgLKRTaItwaS0iyIxA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6959654327689249649@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6959654327689249649", "reason": "scheduled", "result": "success", "job_symbol": "bc6", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654772}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "6232c535-89f6-496a-80a6-dfee26de958b/0", "name": "test-linux1804-64-qr/debug-mochitest-remote-nofis", "reference_data_name": "e4e31d790e7b18434b6d7a9aa008fd366be821ed", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YjLFNYn2SWqApt_uJt6Viw/runs/0/artifacts/public/test_info/mochitest-remote_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "4713388600839735036@fakemail.com", "group_symbol": "M-nofis", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "4713388600839735036", "reason": "scheduled", "result": "success", "job_symbol": "remote", "group_name": "Mochitests without fission enabled", "product_name": "firefox", "end_timestamp": 1740654654}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "60eb5424-80a9-4c9b-8b29-580106d6e6dc/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-5", "reference_data_name": "5480a835bf31b5951f4f527f9278aedcb9efaf41", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YOtUJICpTJuLKVgBBtbm3A/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "9099684961890174716@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "9099684961890174716", "reason": "scheduled", "result": "success", "job_symbol": "bc5", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740655071}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "640b7fc1-6457-462b-9a91-51e98a50dd1f/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-16", "reference_data_name": "55acc7d494af04ad4326f078ebaa9c0c071366bf", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZAt_wWRXRiuakVHpilDdHw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2496180007079902468@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2496180007079902468", "reason": "scheduled", "result": "testfailed", "job_symbol": "bc16", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740655876}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654505, "job_guid": "66924508-285c-4957-8cc9-ff7a41f6c928/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "4ee6c6e836411baeb40165962c31c27e3419ae06", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZpJFCChcSVeMyf96QfbJKA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5779527048530594163@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5779527048530594163", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740654717}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654668, "job_guid": "1a946d7f-3b8c-4e9e-bd3d-7ede8810cf8a/0", "name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "77cfd90441157f4a809d4b7081a5a081d293f74a", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GpRtfzuMTp69PX7eiBDPig/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "macmini-r8-192@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-192", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740656298}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654578, "job_guid": "4d2bc092-72f6-4815-9461-fbe1da4d7f63/0", "name": "test-macosx1470-64/debug-reftest-swr-6", "reference_data_name": "cab954c7c2b86aa6b7ecd772cead3baf7f389ab7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/TSvAknL2SBWUYfvh2k1_Yw/runs/0/artifacts/public/test_info/reftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "macmini-r8-228@fakemail.com", "group_symbol": "R-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-228", "reason": "scheduled", "result": "success", "job_symbol": "R6", "group_name": "Reftests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740654735}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654583, "job_guid": "5d6041e4-b31b-4b4f-9a97-2d4cadfbdb01/0", "name": "test-macosx1470-64/debug-mochitest-devtools-chrome-7", "reference_data_name": "b4968edd12d17143d6400bdc85cd42fe7bcec2c0", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/XWBB5LMbS0-aly1MrfvbAQ/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "macmini-r8-250@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-250", "reason": "scheduled", "result": "success", "job_symbol": "dt7", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740654896}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740653466, "start_timestamp": 1740654674, "job_guid": "65f1199a-4543-4fb4-8ea1-2f969f979161/0", "name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "c263f3a2cbfbab9446400f87c0985445fc20e115", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ZfEZmkVDT7SOoS-Wn5eRYQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "macmini-r8-172@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-146", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740655811}, "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666256, "job_guid": "02209d41-03e0-4800-ad29-8232ef8e33dd/0", "name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "0e0f41479304b28c030c4b7208911234f8547ec2", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AiCdQQPgSACtKYIy744z3Q/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "1373867699304516488@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-146", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740667457}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666256, "job_guid": "00928aee-053a-4d1b-ac13-dee6ab20ea69/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-10", "reference_data_name": "50810e782cfe42eb5c68abd06f2c51bf97efdd60", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AJKK7gU6TRusE97mqyDqaQ/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3198051158726658952@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3198051158726658952", "reason": "scheduled", "result": "success", "job_symbol": "dt10", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740666997}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666256, "job_guid": "6a6d4022-3a0a-438e-81fa-fed7aaf7bf3a/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-4", "reference_data_name": "9d2134bd03c11cefab7f82e1b9fa38bebe130803", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/am1AIjoKQ46B-v7Xqve_Og/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7881745808564800392@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7881745808564800392", "reason": "scheduled", "result": "success", "job_symbol": "dt4", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740666627}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666257, "job_guid": "017f1b5a-8491-49f8-8503-58e6336b65dd/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-9", "reference_data_name": "3ea710fab00e8711d393ae454e398c7204fdb71e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AX8bWoSRSfiFA1jmM2tl3Q/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3475767815715017028@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3475767815715017028", "reason": "scheduled", "result": "success", "job_symbol": "bc9", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740667104}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666257, "job_guid": "6c2525dc-a33c-46e8-bf2a-cbd47e3a9b74/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-http3-12", "reference_data_name": "ce7b253f44c7ebf2554ac555005a753903efd45f", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bCUl3KM8Rui_KsvUfjqbdA/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "4214047078712462216@fakemail.com", "group_symbol": "M-http3", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "4214047078712462216", "reason": "scheduled", "result": "success", "job_symbol": "dt12", "group_name": "Mochitests with http3 server", "product_name": "firefox", "end_timestamp": 1740667341}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666257, "job_guid": "6de04b7a-87a2-4751-befb-72610d608dd8/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-9", "reference_data_name": "eeefa934caad8be834a1bc9ebcdb0927b209f4c5", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/beBLeoeiR1G--3JhDWCN2A/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5305249027102460808@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5305249027102460808", "reason": "scheduled", "result": "success", "job_symbol": "bc9", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740667184}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666257, "job_guid": "6ccdaa59-544b-47a5-8d6d-b75a57beb7df/0", "name": "test-linux1804-64-qr/debug-mochitest-chrome-swr-1proc-3", "reference_data_name": "2a4eaa296b6f1d9be0da3e624029b031228add43", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bM2qWVRLR6WNbbdaV7633w/runs/0/artifacts/public/test_info/mochitest-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "387355703308569480@fakemail.com", "group_symbol": "M-swr-1proc", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "387355703308569480", "reason": "scheduled", "result": "success", "job_symbol": "c3", "group_name": "Mochitests with e10s disabled with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740666619}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666257, "job_guid": "6e77871b-c276-4bab-a31d-3f9f1a96569d/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-12", "reference_data_name": "31b989efb19e55582dc32fc787be343669137229", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bneHG8J2S6ujHT-fGpZWnQ/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8687773241444256648@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8687773241444256648", "reason": "scheduled", "result": "success", "job_symbol": "dt12", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740666983}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666257, "job_guid": "6ceb683e-39dd-412e-a0ad-c9599e8e4aa0/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-16", "reference_data_name": "55acc7d494af04ad4326f078ebaa9c0c071366bf", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bOtoPjndQS6grclZno5KoA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5238311716981164935@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5238311716981164935", "reason": "scheduled", "result": "success", "job_symbol": "bc16", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740667113}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "6d2d9419-ccff-4e27-b69a-e0fafbbbb58e/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-12", "reference_data_name": "4a65767e525f5dc96f1097a852efe2bdf5e9701e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bS2UGcz_Tie2muD6-7u1jg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "683121075595103112@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "683121075595103112", "reason": "scheduled", "result": "success", "job_symbol": "bc12", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740667670}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "704bfb73-0740-47ec-9a7c-2e4fe3e43694/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-3", "reference_data_name": "373a024b3b2d5dcbadbd7b5b8154485e821176c1", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cEv7cwdAR-yafC5P4-Q2lA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "1863875823705901960@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "1863875823705901960", "reason": "scheduled", "result": "success", "job_symbol": "bc3", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740666983}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "0aeec643-354f-41f9-8dbe-f06c9115ce5d/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-14", "reference_data_name": "d2e005c529ba94b70a9d8e2615d1a0281aed527b", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Cu7GQzVPQfmNvvBskRXOXQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6157109920013339528@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6157109920013339528", "reason": "scheduled", "result": "success", "job_symbol": "bc14", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740667840}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "792dabef-fcf7-4029-908e-1a543d97379a/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-14", "reference_data_name": "26821cb70b035885d08efdbe59a2f35258d603ee", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eS2r7_z3QCmQjhpUPZc3mg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2771741410824407944@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2771741410824407944", "reason": "scheduled", "result": "success", "job_symbol": "bc14", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740667756}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "1325ace9-1946-40bc-a2d3-15cb0ac1d7ad/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-5", "reference_data_name": "5480a835bf31b5951f4f527f9278aedcb9efaf41", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/EyWs6RlGQLyi0xXLCsHXrQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "1663177959083461512@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "1663177959083461512", "reason": "scheduled", "result": "success", "job_symbol": "bc5", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740666837}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "15d0b67a-b5b0-4916-95e2-83b997d80294/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-http3-14", "reference_data_name": "826fdbcaeb9c0bbc9dcd2439a68cbdae8b13aa6b", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FdC2erWwSRaV4oO5l9gClA/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2998778677785643911@fakemail.com", "group_symbol": "M-http3", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2998778677785643911", "reason": "scheduled", "result": "success", "job_symbol": "dt14", "group_name": "Mochitests with http3 server", "product_name": "firefox", "end_timestamp": 1740668140}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "1458b078-d772-4be2-9861-ed07f9af62ca/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-12", "reference_data_name": "8267c02bf4b55120a52c34a591e901101c98fff7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FFiweNdyS-KYYe0H-a9iyg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7164113917943073672@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7164113917943073672", "reason": "scheduled", "result": "success", "job_symbol": "bc12", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740667790}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "7f257168-7e6b-445d-b2c9-0c9030762ff3/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "4ee6c6e836411baeb40165962c31c27e3419ae06", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/fyVxaH5rRF2yyQyQMHYv8w/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "2025115918269270920@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "2025115918269270920", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740667007}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "1905ab57-3ae5-4bf2-932c-07418a046f5b/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-15", "reference_data_name": "d6e8ea556a8ecdbf63a3fd244cc9d495605e9765", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GQWrVzrlS_KTLAdBigRvWw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "1015996799270112136@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "1015996799270112136", "reason": "scheduled", "result": "success", "job_symbol": "bc15", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740667488}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "1f7463b1-e970-416e-be66-38cbcceb743d/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-11", "reference_data_name": "2c9addc58833803486502b8e3c50c80873e152de", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/H3RjselwQW6-ZjjLzOt0PQ/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "4405716329373223816@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "4405716329373223816", "reason": "scheduled", "result": "success", "job_symbol": "dt11", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740668180}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "1e9ee965-5148-4c75-8170-bd17499d527e/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-6", "reference_data_name": "f3e1a769986cbebc691e2a461bdc11778399cb7e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/Hp7pZVFITHWBcL0XSZ1Sfg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "4123329226162949000@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "4123329226162949000", "reason": "scheduled", "result": "success", "job_symbol": "bc6", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740667057}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "1e9bb125-8b91-4597-b985-b23d00a86c9e/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-spi-nw-11", "reference_data_name": "6ff50c35e7153dd65afc7033b383f0c7aaa58b17", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/HpuxJYuRRZe5hbI9AKhsng/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3419917559941419253@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3419917559941419253", "reason": "scheduled", "result": "testfailed", "job_symbol": "dt11", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740667937}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "1d38fbec-9b60-48b3-abee-e089ec7ec66a/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-9", "reference_data_name": "a3ee15910cd22022b9d8126270500cfa98534eed", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/HTj77JtgSLOr7uCJ7H7Gag/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6798909043423169416@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6798909043423169416", "reason": "scheduled", "result": "success", "job_symbol": "dt9", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740667196}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740665311, "start_timestamp": 1740666258, "job_guid": "2f49a6d1-ab87-4829-995c-a619c6d4fc62/0", "name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "d18b61ac776a3e7700cfb63522a84ad91786a018", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/L0mm0auHSCmZXKYZxtT8Yg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8215127114315058056@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-146", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740666956}, "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668643, "job_guid": "008dcdae-bde0-4834-a967-d13d681037ae/0", "name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "5480a835bf31b5951f4f527f9278aedcb9efaf41", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AI3Nrr3gSDSpZ9E9aBA3rg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8961039277226838678@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-146", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740668802}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668643, "job_guid": "0401bb89-f4b5-41b1-820f-088e3fb36495/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-10", "reference_data_name": "50810e782cfe42eb5c68abd06f2c51bf97efdd60", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BAG7ifS1QbGCDwiOP7NklQ/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8694211573514619625@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8694211573514619625", "reason": "scheduled", "result": "success", "job_symbol": "dt10", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740669469}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668643, "job_guid": "6ff402cc-c8d5-4262-8fc8-ee4897425e77/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-11", "reference_data_name": "11e7f451f46282f813f3b4ad021a2ac0a66465f3", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/b_QCzMjVQmKPyO5Il0Jedw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8683040324923017879@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8683040324923017879", "reason": "scheduled", "result": "success", "job_symbol": "bc11", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740669240}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668643, "job_guid": "73677162-e702-48c5-8f95-391bef4afcf6/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-11", "reference_data_name": "793ca4445decfe7a6ee00de48e9c3d5baf43b6a7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/c2dxYucCSMWPlTkb70r89g/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5796713192661830535@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5796713192661830535", "reason": "scheduled", "result": "success", "job_symbol": "bc11", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740669452}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668643, "job_guid": "09a2ba36-57c1-49fe-85f8-d015aeb2890d/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-9", "reference_data_name": "eeefa934caad8be834a1bc9ebcdb0927b209f4c5", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CaK6NlfBSf6F-NAVrrKJDQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8984136765236169706@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8984136765236169706", "reason": "scheduled", "result": "success", "job_symbol": "bc9", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740669034}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668643, "job_guid": "0a29590a-79a2-4ca9-9a80-97bf87a1eae4/0", "name": "test-linux1804-64-qr/debug-jsreftest-3", "reference_data_name": "dac3d9331197f5f18915d58314a32325862f08f5", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CilZCnmiTKmagJe_h6Hq5A/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7142285837582848162@fakemail.com", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7142285837582848162", "reason": "scheduled", "result": "success", "job_symbol": "J3", "group_name": "Reftests", "product_name": "firefox", "end_timestamp": 1740670032}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668649, "job_guid": "70f7bccb-4ef5-4a96-add3-d765033086ba/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-6", "reference_data_name": "f3e1a769986cbebc691e2a461bdc11778399cb7e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cPe8y071Spat09dlAzCGug/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8581372247093922696@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8581372247093922696", "reason": "scheduled", "result": "success", "job_symbol": "bc6", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740668923}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668651, "job_guid": "741f11e4-05ce-4597-82a4-37d0958525a3/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-16", "reference_data_name": "cc4abee7a9940f3a7e77d9beaf4d2241e1ba9af5", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dB8R5AXORZeCpDfQlYUlow/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5273175839128538224@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5273175839128538224", "reason": "scheduled", "result": "success", "job_symbol": "bc16", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740669241}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668676, "job_guid": "79dce0cc-2a61-4c04-be40-dfd30277fb78/0", "name": "test-linux2204-64-wayland/debug-jsreftest-3", "reference_data_name": "344fa5346fc2a35e578c5ecc341bddd24b6c3002", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/edzgzCphTAS-QN_TAnf7eA/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6383577120260342314@fakemail.com", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6383577120260342314", "reason": "scheduled", "result": "success", "job_symbol": "J3", "group_name": "Reftests", "product_name": "firefox", "end_timestamp": 1740670146}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668661, "job_guid": "789f4f1b-8d6d-49a5-b335-4d6e63bfae49/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-12", "reference_data_name": "8267c02bf4b55120a52c34a591e901101c98fff7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eJ9PG41tSaWzNU1uY7-uSQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6143895516824325098@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6143895516824325098", "reason": "scheduled", "result": "testfailed", "job_symbol": "bc12", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740669743}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668705, "job_guid": "15c6c852-855b-4b8b-adc4-5112f38c2b3f/0", "name": "test-linux2204-64-wayland/debug-jsreftest-4", "reference_data_name": "782bbfc31ef05c952e7535a379ad00e0e1c64f69", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FcbIUoVbS4utxFES84wrPw/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5936936096690455120@fakemail.com", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5936936096690455120", "reason": "scheduled", "result": "success", "job_symbol": "J4", "group_name": "Reftests", "product_name": "firefox", "end_timestamp": 1740670180}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668682, "job_guid": "14d4f704-b890-4473-b5e0-d360a278d042/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-16", "reference_data_name": "55acc7d494af04ad4326f078ebaa9c0c071366bf", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FNT3BLiQRHO14NNgonjQQg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5267719688769358568@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5267719688769358568", "reason": "scheduled", "result": "success", "job_symbol": "bc16", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740669284}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668684, "job_guid": "7ed5ec47-23b0-4607-a289-81f22135d438/0", "name": "test-linux1804-64-qr/debug-jsreftest-4", "reference_data_name": "c8b2cee18be1e9c6bca007fd9204d6a70de249c9", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ftXsRyOwRgeiiYHyITXUOA/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8791806875590836229@fakemail.com", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8791806875590836229", "reason": "scheduled", "result": "success", "job_symbol": "J4", "group_name": "Reftests", "product_name": "firefox", "end_timestamp": 1740670157}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668685, "job_guid": "19cbc73f-a1cb-49e3-bfac-a603376cbf4e/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-http3-10", "reference_data_name": "7d39d6a7f765c4cd867711e20ab08ad4ce8474f8", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GcvHP6HLSeO_rKYDN2y_Tg/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "1925341989737185285@fakemail.com", "group_symbol": "M-http3", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "1925341989737185285", "reason": "scheduled", "result": "success", "job_symbol": "dt10", "group_name": "Mochitests with http3 server", "product_name": "firefox", "end_timestamp": 1740670217}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668686, "job_guid": "18f2e4ef-c9ba-4b3e-934c-b24555c6b85f/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-vt", "reference_data_name": "21d4bb8e26be1499869452e9bf5f513e8d53e1f3", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GPLk78m6Sz6TTLJFVca4Xw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "5960255909386895365@fakemail.com", "group_symbol": "M-vt", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "5960255909386895365", "reason": "scheduled", "result": "testfailed", "job_symbol": "bc", "group_name": "Mochitests limited to tests identified as being applicable to also run with vertical tabs enabled", "product_name": "firefox", "end_timestamp": 1740669669}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668686, "job_guid": "23663e4c-135c-40f4-89ce-c2a507de6b7d/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-8", "reference_data_name": "daafe47d7406457308224e183a4f66d216bea497", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I2Y-TBNcQPSJzsKlB95rfQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6960160425160589317@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6960160425160589317", "reason": "scheduled", "result": "success", "job_symbol": "bc8", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740670604}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668686, "job_guid": "23e1e0ed-b338-4d43-aae0-9aa75f4a6dd2/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-13", "reference_data_name": "0e0f41479304b28c030c4b7208911234f8547ec2", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I-Hg7bM4TUOq4JqnX0pt0g/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "782077753455132677@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "782077753455132677", "reason": "scheduled", "result": "success", "job_symbol": "bc13", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740670360}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668686, "job_guid": "3351028c-f241-4e59-b027-166ae695b2be/0", "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-9", "reference_data_name": "a3ee15910cd22022b9d8126270500cfa98534eed", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/M1ECjPJBTlmwJxZq5pWyvg/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3956461659289927685@fakemail.com", "group_symbol": "M", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3956461659289927685", "reason": "scheduled", "result": "success", "job_symbol": "dt9", "group_name": "Mochitests", "product_name": "firefox", "end_timestamp": 1740670204}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668713, "job_guid": "30aabc98-c33e-4483-b1ce-d5cee6783efc/0", "name": "test-linux2204-64-wayland/debug-jsreftest-5", "reference_data_name": "6aa43ae4432768896e86aa3d724e614615d1136d", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/MKq8mMM-RIOxztXO5ng-_A/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "3827820576956596352@fakemail.com", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "3827820576956596352", "reason": "scheduled", "result": "retry", "job_symbol": "J5", "group_name": "Reftests", "product_name": "firefox", "end_timestamp": 1740669485}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668687, "job_guid": "32badb89-fcc1-4097-9f51-b4b6ca6e106a/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-9", "reference_data_name": "3ea710fab00e8711d393ae454e398c7204fdb71e", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/MrrbifzBQJefUbS2ym4Qag/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "876059733904965637@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "876059733904965637", "reason": "scheduled", "result": "success", "job_symbol": "bc9", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740669301}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668687, "job_guid": "39161834-c844-4f4c-b118-cbde97826e8e/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-8", "reference_data_name": "9a4ee51337b6edf49ed9a18397d0dddaf9c5a5c7", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ORYYNMhET0yxGMvel4Jujg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "8855612218250477573@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "8855612218250477573", "reason": "scheduled", "result": "success", "job_symbol": "bc8", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740670325}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668688, "job_guid": "4ea5830c-6a16-49b0-87f7-74534f13c05a/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-3", "reference_data_name": "d18b61ac776a3e7700cfb63522a84ad91786a018", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/TqWDDGoWSbCH93RTTxPAWg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "6227968977657514667@fakemail.com", "group_symbol": "M-swr", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "6227968977657514667", "reason": "scheduled", "result": "success", "job_symbol": "bc3", "group_name": "Mochitests with software webrender enabled", "product_name": "firefox", "end_timestamp": 1740668900}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668688, "job_guid": "5556b66a-6ccc-4bed-9c48-36e283d447b3/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "4ee6c6e836411baeb40165962c31c27e3419ae06", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VVa2amzMS-2cSDbig9RHsw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "7197484843170381829@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "7197484843170381829", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740669086}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "submit_timestamp": 1740667516, "start_timestamp": 1740668690, "job_guid": "60838ae3-4d72-4761-afca-020571f3d506/0", "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-3", "reference_data_name": "373a024b3b2d5dcbadbd7b5b8154485e821176c1", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YIOK401yR2GvygIFcfPVBg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "258492717194919941@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux64", "os_name": "linux", "architecture": "x86_64"}, "machine": "258492717194919941", "reason": "scheduled", "result": "success", "job_symbol": "bc3", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740669058}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "win32", "os_name": "win", "architecture": "x86"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668814, "job_guid": "76b799bd-fcaa-4c9a-aa49-3b33acc2485d/0", "name": "test-windows11-32-24h2/debug-jsreftest-3", "reference_data_name": "39b1fe7b007c287d7d8c8ab1db33f35088a3f6ad", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dreZvfyqTJqqSTszrMJIXQ/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "vm-e8xt2pk8t3i3zvyq1@fakemail.com", "group_symbol": "R", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "win32", "os_name": "win", "architecture": "x86"}, "machine": "vm-e8xt2pk8t3i3zvyq1lxaaaa5zpmjq3sjuve", "reason": "scheduled", "result": "success", "job_symbol": "J3", "group_name": "Reftests", "product_name": "firefox", "end_timestamp": 1740671420}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} +{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1740667517, "start_timestamp": 1740668820, "job_guid": "7851b022-9ed1-41e5-9f6d-1be925712f44/0", "name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "reference_data_name": "a0bb0aa20a3816f3d68d741751a676c5e9164b90", "log_references": [{"url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eFGwIp7RQeWfbRvpJXEvRA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", "name": "errorsummary_json"}], "option_collection": {"debug": true}, "who": "vm-qhjipegtswuri3enh@fakemail.com", "group_symbol": "M-spi-nw", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "mac64", "os_name": "mac", "architecture": "x86_64"}, "machine": "macmini-r8-146", "reason": "scheduled", "result": "success", "job_symbol": "bc10", "group_name": "Mochitests with networking on socket process enabled", "product_name": "firefox", "end_timestamp": 1740669171}, "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"} diff --git a/tests/sample_data/job_data2.txt b/tests/sample_data/job_data2.txt deleted file mode 100644 index 6c299d376d1..00000000000 --- a/tests/sample_data/job_data2.txt +++ /dev/null @@ -1,6 +0,0 @@ -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384353546, "start_timestamp": 1384353553, "job_guid": "f1c75261017c7c5ce3000931dce4c442fe0a1297", "name": "linux-x64-tsan-build", "reference_data_name": "mozilla-release_linux-debug_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb-debug/1384353546/mozilla-release_linux-debug_dep-bm62-build1-build17.txt.gz", "name": "live_backing_log"}], "option_collection": {"debug": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-132", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384364989}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "submit_timestamp": 1384353546, "start_timestamp": 1384353555, "job_guid": "9abb6f7d54a49d763c584926377f09835c5e1a32", "name": "linux-x64-tsan-build", "reference_data_name": "mozilla-release_emulator-jb_dep", "log_references": [{"url": "http://ftp.mozilla.org/pub/mozilla.org/tinderbox-builds/mozilla-release-emulator-jb/1384353546/mozilla-release_emulator-jb_dep-bm58-build1-build29.txt.gz", "name": "live_backing_log"}], "option_collection": {"opt": true}, "who": "mozilla-release", "group_symbol": "?", "state": "completed", "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, "machine_platform": {"platform": "linux1804", "os_name": "linux", "architecture": "x86"}, "machine": "bld-linux64-ec2-462", "reason": "scheduler", "result": "success", "job_symbol": "B", "group_name": null, "product_name": "firefox", "end_timestamp": 1384364662}, "resultset_id": 1, "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"} -{"project": "mozilla-central", "job": {"build_platform": {"platform": "mac1015", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384356854, "start_timestamp": 1384356876, "job_guid": "d9cb3668f75f8f1b0b4ef503778ad0b90595a693", "name": "Mochitest-headless-plain-1", "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": "live_backing_log"}], "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": "mac1015", "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": "mac1120", "os_name": "mac", "architecture": "x86_64"}, "submit_timestamp": 1384356854, "start_timestamp": 1384356880, "job_guid": "ab952a4bbbc74f1d9fb3cf536073b371029dbd02", "name": "Mochitest-headless-plain-1", "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": "live_backing_log"}], "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": "mac1120", "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-headless-plain-1", "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": "live_backing_log"}], "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"} - \ No newline at end of file diff --git a/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138.txt.gz b/tests/sample_data/logs/mozilla-central_mountainlion_test-mochitest-2-bm80-tests1-macosx-build138.txt.gz index 28cdfa092ee8290e44ba9e4818240e41facf457f..0c9900bf553f1d6ad116eae0b633daab72e95e4c 100644 GIT binary patch literal 32007 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 diff --git a/tests/sample_data/pulse_consumer/job_data.json b/tests/sample_data/pulse_consumer/job_data.json index c53c5abf83a..e5854d65a83 100644 --- a/tests/sample_data/pulse_consumer/job_data.json +++ b/tests/sample_data/pulse_consumer/job_data.json @@ -1,253 +1,1576 @@ [ { - "taskId": "218cac72-734c-4cbb-b1ce-76bb3cda9425/0", + "taskId": "008dcdae-bde0-4834-a967-d13d681037ae/0", "origin": { "kind": "hg.mozilla.org", "project": "set by test", - "revision": "1234567890123456789012345678901234567890" + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" }, - "buildSystem": "taskcluster", - "display": { - "jobSymbol": "P", - "jobName": "test-linux64/opt-mochitest-devtools-chrome-3", - "groupSymbol": "PI", - "groupName": "PulseIngestion" + "jobSymbol": "bc5", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-5", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" }, - "state": "completed", "result": "success", "jobKind": "test", - "runMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "8961039277226838678" }, "buildMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "8961039277226838678" }, - - "owner": "thedude@lebowski.com", - "reason": "scheduler", - "productName": "Oscillation Overthruster", - - "timeScheduled": "2014-12-19T16:39:57-08:00", - "timeStarted": "2014-12-19T17:39:57-08:00", - "timeCompleted": "2014-12-19T18:39:57-08:00", - + "owner": "8961039277226838678@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", "labels": ["debug"], "version": 1, "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": "live_backing_log" + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AI3Nrr3gSDSpZ9E9aBA3rg/runs/0/artifacts/public/logs/live_backing.log" } ], "jobInfo": { "links": [ { - "url": "http://example.com/blobs/Mozilla-Inbound-Non-PGO/sha512/05c7f57df6583c6351c6b49e439e2678e0f43c2e5b66695ea7d096a7519e1805f441448b5ffd4cc3b80b8b2c74b244288fda644f55ed0e226ef4e25ba02ca466", - "linkText": "svgr-e10s_errorsummary.log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AI3Nrr3gSDSpZ9E9aBA3rg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", "label": "artifact uploaded" - }, + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:03-08:00", + "timeCompleted": "2025-02-26T23:06:42-08:00" + }, + { + "taskId": "0401bb89-f4b5-41b1-820f-088e3fb36495/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "dt10", + "jobName": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-10", + "groupSymbol": "M", + "groupName": "Mochitests" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8694211573514619625" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8694211573514619625" + }, + "owner": "8694211573514619625@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BAG7ifS1QbGCDwiOP7NklQ/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BAG7ifS1QbGCDwiOP7NklQ/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:03-08:00", + "timeCompleted": "2025-02-26T23:17:49-08:00" + }, + { + "taskId": "6e58db2d-115d-4f82-8609-6276fc2e91b1/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "J2", + "jobName": "test-linux2204-64-wayland/debug-jsreftest-2", + "groupSymbol": "R", + "groupName": "Reftests" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "1930007011415409232" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "1930007011415409232" + }, + "owner": "1930007011415409232@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bljbLRFdT4KGCWJ2_C6RsQ/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bljbLRFdT4KGCWJ2_C6RsQ/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:04-08:00", + "timeCompleted": "2025-02-26T23:30:38-08:00" + }, + { + "taskId": "6ff402cc-c8d5-4262-8fc8-ee4897425e77/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc11", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-11", + "groupSymbol": "M-swr", + "groupName": "Mochitests with software webrender enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8683040324923017879" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8683040324923017879" + }, + "owner": "8683040324923017879@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/b_QCzMjVQmKPyO5Il0Jedw/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/b_QCzMjVQmKPyO5Il0Jedw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:03-08:00", + "timeCompleted": "2025-02-26T23:14:00-08:00" + }, + { + "taskId": "73677162-e702-48c5-8f95-391bef4afcf6/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc11", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-11", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5796713192661830535" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5796713192661830535" + }, + "owner": "5796713192661830535@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/c2dxYucCSMWPlTkb70r89g/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/c2dxYucCSMWPlTkb70r89g/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:03-08:00", + "timeCompleted": "2025-02-26T23:17:32-08:00" + }, + { + "taskId": "09a2ba36-57c1-49fe-85f8-d015aeb2890d/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc9", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-9", + "groupSymbol": "M-swr", + "groupName": "Mochitests with software webrender enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8984136765236169706" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8984136765236169706" + }, + "owner": "8984136765236169706@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CaK6NlfBSf6F-NAVrrKJDQ/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CaK6NlfBSf6F-NAVrrKJDQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:03-08:00", + "timeCompleted": "2025-02-26T23:10:34-08:00" + }, + { + "taskId": "0a29590a-79a2-4ca9-9a80-97bf87a1eae4/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "J3", + "jobName": "test-linux1804-64-qr/debug-jsreftest-3", + "groupSymbol": "R", + "groupName": "Reftests" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "7142285837582848162" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "7142285837582848162" + }, + "owner": "7142285837582848162@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CilZCnmiTKmagJe_h6Hq5A/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CilZCnmiTKmagJe_h6Hq5A/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:03-08:00", + "timeCompleted": "2025-02-26T23:27:12-08:00" + }, + { + "taskId": "70f7bccb-4ef5-4a96-add3-d765033086ba/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc6", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-6", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8581372247093922696" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8581372247093922696" + }, + "owner": "8581372247093922696@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cPe8y071Spat09dlAzCGug/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cPe8y071Spat09dlAzCGug/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:09-08:00", + "timeCompleted": "2025-02-26T23:08:43-08:00" + }, + { + "taskId": "719ee073-d258-41ad-943c-40bf108c48ba/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "J1", + "jobName": "test-linux2204-64-wayland/debug-jsreftest-1", + "groupSymbol": "R", + "groupName": "Reftests" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5337528253247504976" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5337528253247504976" + }, + "owner": "5337528253247504976@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cZ7gc9JYQa2UPEC_EIxIug/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cZ7gc9JYQa2UPEC_EIxIug/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:31-08:00", + "timeCompleted": "2025-02-26T23:32:31-08:00" + }, + { + "taskId": "741f11e4-05ce-4597-82a4-37d0958525a3/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc16", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-16", + "groupSymbol": "M-swr", + "groupName": "Mochitests with software webrender enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5273175839128538224" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5273175839128538224" + }, + "owner": "5273175839128538224@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dB8R5AXORZeCpDfQlYUlow/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dB8R5AXORZeCpDfQlYUlow/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:11-08:00", + "timeCompleted": "2025-02-26T23:14:01-08:00" + }, + { + "taskId": "7b560f96-5cfa-4cc6-b021-2a6e824471d6/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "J1", + "jobName": "test-linux1804-64-qr/debug-jsreftest-1", + "groupSymbol": "R", + "groupName": "Reftests" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "1336906043978795691" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "1336906043978795691" + }, + "owner": "1336906043978795691@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/e1YPllz6TMawISpugkRx1g/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/e1YPllz6TMawISpugkRx1g/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:20-08:00", + "timeCompleted": "2025-02-26T23:28:30-08:00" + }, + { + "taskId": "79dce0cc-2a61-4c04-be40-dfd30277fb78/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "J3", + "jobName": "test-linux2204-64-wayland/debug-jsreftest-3", + "groupSymbol": "R", + "groupName": "Reftests" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "6383577120260342314" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "6383577120260342314" + }, + "owner": "6383577120260342314@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/edzgzCphTAS-QN_TAnf7eA/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/edzgzCphTAS-QN_TAnf7eA/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:36-08:00", + "timeCompleted": "2025-02-26T23:29:06-08:00" + }, + { + "taskId": "789f4f1b-8d6d-49a5-b335-4d6e63bfae49/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc12", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-12", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" + }, + "state": "completed", + "result": "fail", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "6143895516824325098" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "6143895516824325098" + }, + "owner": "6143895516824325098@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eJ9PG41tSaWzNU1uY7-uSQ/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eJ9PG41tSaWzNU1uY7-uSQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:21-08:00", + "timeCompleted": "2025-02-26T23:22:23-08:00" + }, + { + "taskId": "7a441a78-2ff2-4742-bc8c-f2b1dbc13b10/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc2", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-2", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "6987552695782329223" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "6987552695782329223" + }, + "owner": "6987552695782329223@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ekQaeC_yR0K8jPKx28E7EA/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ekQaeC_yR0K8jPKx28E7EA/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:34-08:00", + "timeCompleted": "2025-02-26T23:10:53-08:00" + }, + { + "taskId": "15c6c852-855b-4b8b-adc4-5112f38c2b3f/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "J4", + "jobName": "test-linux2204-64-wayland/debug-jsreftest-4", + "groupSymbol": "R", + "groupName": "Reftests" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5936936096690455120" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5936936096690455120" + }, + "owner": "5936936096690455120@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FcbIUoVbS4utxFES84wrPw/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FcbIUoVbS4utxFES84wrPw/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:05:05-08:00", + "timeCompleted": "2025-02-26T23:29:40-08:00" + }, + { + "taskId": "15c943ea-003e-4d31-a0be-afebf7e2d20e/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "J2", + "jobName": "test-linux1804-64-qr/debug-jsreftest-2", + "groupSymbol": "R", + "groupName": "Reftests" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "4281358098233150184" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "4281358098233150184" + }, + "owner": "4281358098233150184@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FclD6gA-TTGgvq_r9-LSDg/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FclD6gA-TTGgvq_r9-LSDg/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:38-08:00", + "timeCompleted": "2025-02-26T23:27:21-08:00" + }, + { + "taskId": "14d4f704-b890-4473-b5e0-d360a278d042/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc16", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-16", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5267719688769358568" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5267719688769358568" + }, + "owner": "5267719688769358568@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FNT3BLiQRHO14NNgonjQQg/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FNT3BLiQRHO14NNgonjQQg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:42-08:00", + "timeCompleted": "2025-02-26T23:14:44-08:00" + }, + { + "taskId": "7ed5ec47-23b0-4607-a289-81f22135d438/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "J4", + "jobName": "test-linux1804-64-qr/debug-jsreftest-4", + "groupSymbol": "R", + "groupName": "Reftests" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8791806875590836229" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8791806875590836229" + }, + "owner": "8791806875590836229@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ftXsRyOwRgeiiYHyITXUOA/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ftXsRyOwRgeiiYHyITXUOA/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:44-08:00", + "timeCompleted": "2025-02-26T23:29:17-08:00" + }, + { + "taskId": "19cbc73f-a1cb-49e3-bfac-a603376cbf4e/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "dt10", + "jobName": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-http3-10", + "groupSymbol": "M-http3", + "groupName": "Mochitests with http3 server" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "1925341989737185285" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "1925341989737185285" + }, + "owner": "1925341989737185285@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GcvHP6HLSeO_rKYDN2y_Tg/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GcvHP6HLSeO_rKYDN2y_Tg/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:45-08:00", + "timeCompleted": "2025-02-26T23:30:17-08:00" + }, + { + "taskId": "18f2e4ef-c9ba-4b3e-934c-b24555c6b85f/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-vt", + "groupSymbol": "M-vt", + "groupName": "Mochitests limited to tests identified as being applicable to also run with vertical tabs enabled" + }, + "state": "completed", + "result": "fail", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5960255909386895365" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "5960255909386895365" + }, + "owner": "5960255909386895365@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GPLk78m6Sz6TTLJFVca4Xw/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ { - "url": "http://example.com/blobs/Mozilla-Inbound-Non-PGO/sha512/a6b13038a5ea71b0975580904e35e08c9d965949c07eb8a12f75eb33f1ec9af1da6f4197c424d850deadebf631aa71da3c0d57a59ec9d82a419aa8c4644a2905", - "linkText": "svgr-e10s_raw.log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GPLk78m6Sz6TTLJFVca4Xw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", "label": "artifact uploaded" } ] - } + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:46-08:00", + "timeCompleted": "2025-02-26T23:21:09-08:00" }, - { - "taskId": "5c909b6d-143a-4a9f-942f-594bfadc399e/0", - "retryId": 0, + "taskId": "23663e4c-135c-40f4-89ce-c2a507de6b7d/0", "origin": { "kind": "hg.mozilla.org", "project": "set by test", - "revision": "1234567890123456789012345678901234567890" + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" }, "buildSystem": "taskcluster", "display": { - "jobSymbol": "P", - "chunkId": 2, - "jobName": "test-android-4.3-arm7-api-15/debug-mochitest-media-1", - "groupSymbol": "?", - "groupName": "unknown" + "jobSymbol": "bc8", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-8", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" }, - "state": "running", + "state": "completed", + "result": "success", "jobKind": "test", "runMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "6960160425160589317" }, "buildMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "6960160425160589317" }, - "owner": "thedude@lebowski.com", - "reason": "scheduler", - "productName": "Oscillation Overthruster", - "timeScheduled": "2014-12-19T16:39:57-08:00", - "timeStarted": "2014-12-19T17:39:57-08:00", - "timeCompleted": "2014-12-19T18:39:57-08:00", + "owner": "6960160425160589317@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], "version": 1, - "labels": ["debug"] + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I2Y-TBNcQPSJzsKlB95rfQ/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I2Y-TBNcQPSJzsKlB95rfQ/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:46-08:00", + "timeCompleted": "2025-02-26T23:36:44-08:00" }, - { - "taskId": "5c909b6d-143a-4a9f-942f-594bfadc399e/1", - "retryId": 1, + "taskId": "23e1e0ed-b338-4d43-aae0-9aa75f4a6dd2/0", "origin": { "kind": "hg.mozilla.org", "project": "set by test", - "revision": "1234567890123456789012345678901234567890" + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" }, "buildSystem": "taskcluster", "display": { - "jobSymbol": "P", - "chunkId": 2, - "jobName": "test-android-4.3-arm7-api-15/debug-mochitest-media-1", - "groupSymbol": "?", - "groupName": "unknown" + "jobSymbol": "bc13", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-13", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" }, - "state": "running", + "state": "completed", + "result": "success", "jobKind": "test", "runMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "782077753455132677" }, "buildMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "782077753455132677" }, - "owner": "thedude@lebowski.com", - "reason": "scheduler", - "productName": "Oscillation Overthruster", - "timeScheduled": "2014-12-19T16:39:57-08:00", - "timeStarted": "2014-12-19T17:39:57-08:00", - "timeCompleted": "2014-12-19T18:39:57-08:00", + "owner": "782077753455132677@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], "version": 1, - "labels": ["debug"] + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I-Hg7bM4TUOq4JqnX0pt0g/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I-Hg7bM4TUOq4JqnX0pt0g/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:04:46-08:00", + "timeCompleted": "2025-02-26T23:32:40-08:00" }, - { - "taskId": "66c4b325-0bb7-43ba-b631-f7a120103329/0", - "retryId": 0, - "isRetried": true, + "taskId": "3351028c-f241-4e59-b027-166ae695b2be/0", "origin": { "kind": "hg.mozilla.org", "project": "set by test", - "revision": "1234567890123456789012345678901234567890" + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" }, - "buildSystem": "taskcluster", - "display": { - "jobSymbol": "", - "chunkId": 3, - "jobName": "static-analysis-win32-st-an/debug", - "groupSymbol": "PI", - "groupName": "PulseIngestion" + "jobSymbol": "dt9", + "jobName": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-9", + "groupSymbol": "M", + "groupName": "Mochitests" }, - "state": "completed", - "result": "fail", + "result": "success", "jobKind": "test", - "runMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "3956461659289927685" }, "buildMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "3956461659289927685" }, - - "owner": "thedude@lebowski.com", - "reason": "scheduler", - - "timeScheduled": "2014-12-19T16:39:57-08:00", - "timeStarted": "2014-12-19T17:39:57-08:00", - "timeCompleted": "2014-12-19T18:39:57-08:00", - + "owner": "3956461659289927685@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], "version": 1, - "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": "live_backing_log" + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/M1ECjPJBTlmwJxZq5pWyvg/runs/0/artifacts/public/logs/live_backing.log" } - ] + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/M1ECjPJBTlmwJxZq5pWyvg/runs/0/artifacts/public/test_info/mochitest-devtools-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:46-08:00", + "timeCompleted": "2025-02-26T23:30:04-08:00" }, { - "taskId": "6c8cd566-df63-4102-a0bd-0603ddad8743/3", - "retryId": 3, + "taskId": "30aabc98-c33e-4483-b1ce-d5cee6783efc/0", "origin": { "kind": "hg.mozilla.org", "project": "set by test", - "revision": "1234567890123456789012345678901234567890" + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" }, - "buildSystem": "taskcluster", - "display": { - "jobSymbol": "", - "chunkId": 3, - "jobName": "test-windows10-64-vm/opt-jsreftest", - "groupSymbol": "PI", - "groupName": "PulseIngestion" + "jobSymbol": "J5", + "jobName": "test-linux2204-64-wayland/debug-jsreftest-5", + "groupSymbol": "R", + "groupName": "Reftests" }, - "state": "completed", - "result": "fail", + "result": "retry", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "3827820576956596352" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "3827820576956596352" + }, + "owner": "3827820576956596352@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/MKq8mMM-RIOxztXO5ng-_A/runs/0/artifacts/public/test_info/jsreftest_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:17-08:00", + "timeStarted": "2025-02-26T23:05:13-08:00", + "timeCompleted": "2025-02-26T23:18:05-08:00" + }, + { + "taskId": "32badb89-fcc1-4097-9f51-b4b6ca6e106a/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc9", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-9", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "876059733904965637" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "876059733904965637" + }, + "owner": "876059733904965637@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/MrrbifzBQJefUbS2ym4Qag/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/MrrbifzBQJefUbS2ym4Qag/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:47-08:00", + "timeCompleted": "2025-02-26T23:15:01-08:00" + }, + { + "taskId": "39161834-c844-4f4c-b118-cbde97826e8e/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc8", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-8", + "groupSymbol": "M-swr", + "groupName": "Mochitests with software webrender enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8855612218250477573" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "8855612218250477573" + }, + "owner": "8855612218250477573@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ORYYNMhET0yxGMvel4Jujg/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ORYYNMhET0yxGMvel4Jujg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:47-08:00", + "timeCompleted": "2025-02-26T23:32:05-08:00" + }, + { + "taskId": "4ea5830c-6a16-49b0-87f7-74534f13c05a/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc3", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-3", + "groupSymbol": "M-swr", + "groupName": "Mochitests with software webrender enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "6227968977657514667" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "6227968977657514667" + }, + "owner": "6227968977657514667@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/TqWDDGoWSbCH93RTTxPAWg/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/TqWDDGoWSbCH93RTTxPAWg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:48-08:00", + "timeCompleted": "2025-02-26T23:08:20-08:00" + }, + { + "taskId": "57caed20-3ae8-455f-86f5-bce3260952d0/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "J5", + "jobName": "test-linux1804-64-qr/debug-jsreftest-5", + "groupSymbol": "R", + "groupName": "Reftests" + }, + "state": "completed", + "result": "retry", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "1653479167014846469" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "1653479167014846469" + }, + "owner": "1653479167014846469@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [], + "jobInfo": { + "links": [] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:48-08:00", + "timeCompleted": "2025-02-26T23:34:49-08:00" + }, + { + "taskId": "5556b66a-6ccc-4bed-9c48-36e283d447b3/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc10", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-10", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" + }, + "state": "completed", + "result": "success", + "jobKind": "test", + "runMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "7197484843170381829" + }, + "buildMachine": { + "platform": "linux64", + "os": "linux", + "architecture": "x86_64", + "name": "7197484843170381829" + }, + "owner": "7197484843170381829@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], + "version": 1, + "logs": [ + { + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VVa2amzMS-2cSDbig9RHsw/runs/0/artifacts/public/logs/live_backing.log" + } + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VVa2amzMS-2cSDbig9RHsw/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:48-08:00", + "timeCompleted": "2025-02-26T23:11:26-08:00" + }, + { + "taskId": "60838ae3-4d72-4761-afca-020571f3d506/0", + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3" + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": "bc3", + "jobName": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-3", + "groupSymbol": "M-spi-nw", + "groupName": "Mochitests with networking on socket process enabled" + }, + "state": "completed", + "result": "success", "jobKind": "test", - "runMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "258492717194919941" }, "buildMachine": { - "name": "bld-linux64-ec2-104", "platform": "linux64", "os": "linux", - "architecture": "x86_64" + "architecture": "x86_64", + "name": "258492717194919941" }, - - "owner": "thedude@lebowski.com", - "reason": "scheduler", - - "timeScheduled": "2014-12-19T16:39:57-08:00", - "timeStarted": "2014-12-19T17:39:57-08:00", - "timeCompleted": "2014-12-19T18:39:57-08:00", - + "owner": "258492717194919941@fakemail.com", + "reason": "scheduled", + "productName": "Firefox", + "labels": ["debug"], "version": 1, - "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": "live_backing_log" + "name": "live_backing_log", + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YIOK401yR2GvygIFcfPVBg/runs/0/artifacts/public/logs/live_backing.log" } - ] + ], + "jobInfo": { + "links": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YIOK401yR2GvygIFcfPVBg/runs/0/artifacts/public/test_info/mochitest-browser-chrome_errorsummary.log", + "linkText": "errorsummary_json", + "label": "artifact uploaded" + } + ] + }, + "timeScheduled": "2025-02-26T22:45:16-08:00", + "timeStarted": "2025-02-26T23:04:50-08:00", + "timeCompleted": "2025-02-26T23:10:58-08:00" } ] diff --git a/tests/sample_data/pulse_consumer/transformed_job_data.json b/tests/sample_data/pulse_consumer/transformed_job_data.json index fb62be3ee6d..50ff8bc41fb 100644 --- a/tests/sample_data/pulse_consumer/transformed_job_data.json +++ b/tests/sample_data/pulse_consumer/transformed_job_data.json @@ -1,16 +1,16 @@ [ { "job": { - "taskcluster_task_id": "IYyscnNMTLuxzna7PNqUJQ", + "taskcluster_task_id": "AI3Nrr3gSDSpZ9E9aBA3rg", "taskcluster_retry_id": 0, "build_platform": { "platform": "linux64", "os_name": "linux", "architecture": "x86_64" }, - "submit_timestamp": 1419035997.0, - "start_timestamp": 1419039597.0, - "name": "test-linux64/opt-mochitest-devtools-chrome-3", + "submit_timestamp": 1740638717, + "start_timestamp": 1740639843, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-5", "option_collection": { "debug": true }, @@ -20,46 +20,789 @@ "architecture": "x86_64" }, "build_system_type": "taskcluster", - "who": "thedude@lebowski.com", - "group_symbol": "PI", - "reason": "scheduler", - "group_name": "PulseIngestion", - "machine": "bld-linux64-ec2-104", + "who": "8961039277226838678@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "8961039277226838678", "state": "completed", "result": "success", "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": "pending", - "name": "live_backing_log" - }, + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/AI3Nrr3gSDSpZ9E9aBA3rg/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc5", + "job_guid": "008dcdae-bde0-4834-a967-d13d681037ae/0", + "product_name": "Firefox", + "end_timestamp": 1740640002 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "BAG7ifS1QbGCDwiOP7NklQ", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639843, + "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-10", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "8694211573514619625@fakemail.com", + "group_symbol": "M", + "reason": "scheduled", + "group_name": "Mochitests", + "machine": "8694211573514619625", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/BAG7ifS1QbGCDwiOP7NklQ/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "dt10", + "job_guid": "0401bb89-f4b5-41b1-820f-088e3fb36495/0", + "product_name": "Firefox", + "end_timestamp": 1740640669 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "bljbLRFdT4KGCWJ2_C6RsQ", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639844, + "name": "test-linux2204-64-wayland/debug-jsreftest-2", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "1930007011415409232@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "1930007011415409232", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/bljbLRFdT4KGCWJ2_C6RsQ/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "J2", + "job_guid": "6e58db2d-115d-4f82-8609-6276fc2e91b1/0", + "product_name": "Firefox", + "end_timestamp": 1740641438 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "b_QCzMjVQmKPyO5Il0Jedw", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639843, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-11", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "8683040324923017879@fakemail.com", + "group_symbol": "M-swr", + "reason": "scheduled", + "group_name": "Mochitests with software webrender enabled", + "machine": "8683040324923017879", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/b_QCzMjVQmKPyO5Il0Jedw/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc11", + "job_guid": "6ff402cc-c8d5-4262-8fc8-ee4897425e77/0", + "product_name": "Firefox", + "end_timestamp": 1740640440 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "c2dxYucCSMWPlTkb70r89g", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639843, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-11", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "5796713192661830535@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "5796713192661830535", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/c2dxYucCSMWPlTkb70r89g/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc11", + "job_guid": "73677162-e702-48c5-8f95-391bef4afcf6/0", + "product_name": "Firefox", + "end_timestamp": 1740640652 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "CaK6NlfBSf6F-NAVrrKJDQ", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639843, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-9", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "8984136765236169706@fakemail.com", + "group_symbol": "M-swr", + "reason": "scheduled", + "group_name": "Mochitests with software webrender enabled", + "machine": "8984136765236169706", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CaK6NlfBSf6F-NAVrrKJDQ/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc9", + "job_guid": "09a2ba36-57c1-49fe-85f8-d015aeb2890d/0", + "product_name": "Firefox", + "end_timestamp": 1740640234 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "CilZCnmiTKmagJe_h6Hq5A", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639843, + "name": "test-linux1804-64-qr/debug-jsreftest-3", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "7142285837582848162@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "7142285837582848162", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/CilZCnmiTKmagJe_h6Hq5A/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "J3", + "job_guid": "0a29590a-79a2-4ca9-9a80-97bf87a1eae4/0", + "product_name": "Firefox", + "end_timestamp": 1740641232 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "cPe8y071Spat09dlAzCGug", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639849, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-6", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "8581372247093922696@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "8581372247093922696", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cPe8y071Spat09dlAzCGug/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc6", + "job_guid": "70f7bccb-4ef5-4a96-add3-d765033086ba/0", + "product_name": "Firefox", + "end_timestamp": 1740640123 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "cZ7gc9JYQa2UPEC_EIxIug", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639871, + "name": "test-linux2204-64-wayland/debug-jsreftest-1", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "5337528253247504976@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "5337528253247504976", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/cZ7gc9JYQa2UPEC_EIxIug/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "J1", + "job_guid": "719ee073-d258-41ad-943c-40bf108c48ba/0", + "product_name": "Firefox", + "end_timestamp": 1740641551 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "dB8R5AXORZeCpDfQlYUlow", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639851, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-16", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "5273175839128538224@fakemail.com", + "group_symbol": "M-swr", + "reason": "scheduled", + "group_name": "Mochitests with software webrender enabled", + "machine": "5273175839128538224", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dB8R5AXORZeCpDfQlYUlow/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc16", + "job_guid": "741f11e4-05ce-4597-82a4-37d0958525a3/0", + "product_name": "Firefox", + "end_timestamp": 1740640441 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "e1YPllz6TMawISpugkRx1g", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639860, + "name": "test-linux1804-64-qr/debug-jsreftest-1", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "1336906043978795691@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "1336906043978795691", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/e1YPllz6TMawISpugkRx1g/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "J1", + "job_guid": "7b560f96-5cfa-4cc6-b021-2a6e824471d6/0", + "product_name": "Firefox", + "end_timestamp": 1740641310 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "edzgzCphTAS-QN_TAnf7eA", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639876, + "name": "test-linux2204-64-wayland/debug-jsreftest-3", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "6383577120260342314@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "6383577120260342314", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/edzgzCphTAS-QN_TAnf7eA/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "J3", + "job_guid": "79dce0cc-2a61-4c04-be40-dfd30277fb78/0", + "product_name": "Firefox", + "end_timestamp": 1740641346 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "eJ9PG41tSaWzNU1uY7-uSQ", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639861, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-12", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "6143895516824325098@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "6143895516824325098", + "state": "completed", + "result": "testfailed", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/eJ9PG41tSaWzNU1uY7-uSQ/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc12", + "job_guid": "789f4f1b-8d6d-49a5-b335-4d6e63bfae49/0", + "product_name": "Firefox", + "end_timestamp": 1740640943 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "ekQaeC_yR0K8jPKx28E7EA", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639874, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-2", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "6987552695782329223@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "6987552695782329223", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ekQaeC_yR0K8jPKx28E7EA/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc2", + "job_guid": "7a441a78-2ff2-4742-bc8c-f2b1dbc13b10/0", + "product_name": "Firefox", + "end_timestamp": 1740640253 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "FcbIUoVbS4utxFES84wrPw", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639905, + "name": "test-linux2204-64-wayland/debug-jsreftest-4", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "5936936096690455120@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "5936936096690455120", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FcbIUoVbS4utxFES84wrPw/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "J4", + "job_guid": "15c6c852-855b-4b8b-adc4-5112f38c2b3f/0", + "product_name": "Firefox", + "end_timestamp": 1740641380 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "FclD6gA-TTGgvq_r9-LSDg", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639878, + "name": "test-linux1804-64-qr/debug-jsreftest-2", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "4281358098233150184@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "4281358098233150184", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FclD6gA-TTGgvq_r9-LSDg/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "J2", + "job_guid": "15c943ea-003e-4d31-a0be-afebf7e2d20e/0", + "product_name": "Firefox", + "end_timestamp": 1740641241 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "FNT3BLiQRHO14NNgonjQQg", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639882, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-16", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "5267719688769358568@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "5267719688769358568", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/FNT3BLiQRHO14NNgonjQQg/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc16", + "job_guid": "14d4f704-b890-4473-b5e0-d360a278d042/0", + "product_name": "Firefox", + "end_timestamp": 1740640484 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "ftXsRyOwRgeiiYHyITXUOA", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639884, + "name": "test-linux1804-64-qr/debug-jsreftest-4", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "8791806875590836229@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "8791806875590836229", + "state": "completed", + "result": "success", + "log_references": [ { - "url": "http://example.com/blobs/Mozilla-Inbound-Non-PGO/sha512/05c7f57df6583c6351c6b49e439e2678e0f43c2e5b66695ea7d096a7519e1805f441448b5ffd4cc3b80b8b2c74b244288fda644f55ed0e226ef4e25ba02ca466", - "parse_status": "pending", - "name": "errorsummary_json" + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ftXsRyOwRgeiiYHyITXUOA/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" } ], "tier": 1, - "job_symbol": "P", - "job_guid": "218cac72-734c-4cbb-b1ce-76bb3cda9425/0", - "product_name": "Oscillation Overthruster", - "end_timestamp": 1419043197.0 + "job_symbol": "J4", + "job_guid": "7ed5ec47-23b0-4607-a289-81f22135d438/0", + "product_name": "Firefox", + "end_timestamp": 1740641357 }, - "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", "superseded": [] }, { "job": { - "taskcluster_task_id": "XJCbbRQ6Sp-UL1lL-tw5ng", + "taskcluster_task_id": "GcvHP6HLSeO_rKYDN2y_Tg", "taskcluster_retry_id": 0, "build_platform": { "platform": "linux64", "os_name": "linux", "architecture": "x86_64" }, - "submit_timestamp": 1419035997.0, - "start_timestamp": 1419039597.0, - "name": "test-android-4.3-arm7-api-15/debug-mochitest-media-1", + "submit_timestamp": 1740638716, + "start_timestamp": 1740639885, + "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-http3-10", "option_collection": { "debug": true }, @@ -69,35 +812,217 @@ "architecture": "x86_64" }, "build_system_type": "taskcluster", - "who": "thedude@lebowski.com", - "group_symbol": "?", - "reason": "scheduler", - "group_name": "unknown", - "machine": "bld-linux64-ec2-104", - "state": "running", - "result": "unknown", - "log_references": [], + "who": "1925341989737185285@fakemail.com", + "group_symbol": "M-http3", + "reason": "scheduled", + "group_name": "Mochitests with http3 server", + "machine": "1925341989737185285", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GcvHP6HLSeO_rKYDN2y_Tg/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "dt10", + "job_guid": "19cbc73f-a1cb-49e3-bfac-a603376cbf4e/0", + "product_name": "Firefox", + "end_timestamp": 1740641417 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "GPLk78m6Sz6TTLJFVca4Xw", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639886, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-vt", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "5960255909386895365@fakemail.com", + "group_symbol": "M-vt", + "reason": "scheduled", + "group_name": "Mochitests limited to tests identified as being applicable to also run with vertical tabs enabled", + "machine": "5960255909386895365", + "state": "completed", + "result": "testfailed", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/GPLk78m6Sz6TTLJFVca4Xw/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc", + "job_guid": "18f2e4ef-c9ba-4b3e-934c-b24555c6b85f/0", + "product_name": "Firefox", + "end_timestamp": 1740640869 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "I2Y-TBNcQPSJzsKlB95rfQ", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639886, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-8", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "6960160425160589317@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "6960160425160589317", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I2Y-TBNcQPSJzsKlB95rfQ/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc8", + "job_guid": "23663e4c-135c-40f4-89ce-c2a507de6b7d/0", + "product_name": "Firefox", + "end_timestamp": 1740641804 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "I-Hg7bM4TUOq4JqnX0pt0g", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638717, + "start_timestamp": 1740639886, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-13", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "782077753455132677@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "782077753455132677", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/I-Hg7bM4TUOq4JqnX0pt0g/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc13", + "job_guid": "23e1e0ed-b338-4d43-aae0-9aa75f4a6dd2/0", + "product_name": "Firefox", + "end_timestamp": 1740641560 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "M1ECjPJBTlmwJxZq5pWyvg", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639886, + "name": "test-linux1804-64-qr/debug-mochitest-devtools-chrome-9", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "3956461659289927685@fakemail.com", + "group_symbol": "M", + "reason": "scheduled", + "group_name": "Mochitests", + "machine": "3956461659289927685", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/M1ECjPJBTlmwJxZq5pWyvg/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], "tier": 1, - "job_symbol": "P2", - "job_guid": "5c909b6d-143a-4a9f-942f-594bfadc399e/0", - "product_name": "Oscillation Overthruster", - "end_timestamp": 1419043197.0 + "job_symbol": "dt9", + "job_guid": "3351028c-f241-4e59-b027-166ae695b2be/0", + "product_name": "Firefox", + "end_timestamp": 1740641404 }, - "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", "superseded": [] }, { "job": { - "taskcluster_task_id": "XJCbbRQ6Sp-UL1lL-tw5ng", - "taskcluster_retry_id": 1, + "taskcluster_task_id": "MKq8mMM-RIOxztXO5ng-_A", + "taskcluster_retry_id": 0, "build_platform": { "platform": "linux64", "os_name": "linux", "architecture": "x86_64" }, - "submit_timestamp": 1419035997.0, - "start_timestamp": 1419039597.0, - "name": "test-android-4.3-arm7-api-15/debug-mochitest-media-1", + "submit_timestamp": 1740638717, + "start_timestamp": 1740639913, + "name": "test-linux2204-64-wayland/debug-jsreftest-5", "option_collection": { "debug": true }, @@ -107,105 +1032,279 @@ "architecture": "x86_64" }, "build_system_type": "taskcluster", - "who": "thedude@lebowski.com", - "group_symbol": "?", - "reason": "scheduler", - "group_name": "unknown", - "machine": "bld-linux64-ec2-104", - "state": "running", - "result": "unknown", + "who": "3827820576956596352@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "3827820576956596352", + "state": "completed", + "result": "retry", "log_references": [], "tier": 1, - "job_symbol": "P2", - "job_guid": "5c909b6d-143a-4a9f-942f-594bfadc399e/1", - "product_name": "Oscillation Overthruster", - "end_timestamp": 1419043197.0 + "job_symbol": "J5", + "job_guid": "30aabc98-c33e-4483-b1ce-d5cee6783efc/0", + "product_name": "Firefox", + "end_timestamp": 1740640685 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "MrrbifzBQJefUbS2ym4Qag", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639887, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-9", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "876059733904965637@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "876059733904965637", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/MrrbifzBQJefUbS2ym4Qag/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc9", + "job_guid": "32badb89-fcc1-4097-9f51-b4b6ca6e106a/0", + "product_name": "Firefox", + "end_timestamp": 1740640501 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "ORYYNMhET0yxGMvel4Jujg", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639887, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-8", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "8855612218250477573@fakemail.com", + "group_symbol": "M-swr", + "reason": "scheduled", + "group_name": "Mochitests with software webrender enabled", + "machine": "8855612218250477573", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/ORYYNMhET0yxGMvel4Jujg/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc8", + "job_guid": "39161834-c844-4f4c-b118-cbde97826e8e/0", + "product_name": "Firefox", + "end_timestamp": 1740641525 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "TqWDDGoWSbCH93RTTxPAWg", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639888, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-swr-3", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "6227968977657514667@fakemail.com", + "group_symbol": "M-swr", + "reason": "scheduled", + "group_name": "Mochitests with software webrender enabled", + "machine": "6227968977657514667", + "state": "completed", + "result": "success", + "log_references": [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/TqWDDGoWSbCH93RTTxPAWg/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" + } + ], + "tier": 1, + "job_symbol": "bc3", + "job_guid": "4ea5830c-6a16-49b0-87f7-74534f13c05a/0", + "product_name": "Firefox", + "end_timestamp": 1740640100 }, - "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", "superseded": [] }, { "job": { - "taskcluster_task_id": "ZsSzJQu3Q7q2MfehIBAzKQ", + "taskcluster_task_id": "V8rtIDroRV-G9bzjJglS0A", "taskcluster_retry_id": 0, "build_platform": { "platform": "linux64", "os_name": "linux", "architecture": "x86_64" }, - "submit_timestamp": 1419035997.0, - "start_timestamp": 1419039597.0, - "name": "static-analysis-win32-st-an/debug", - "option_collection": {}, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639888, + "name": "test-linux1804-64-qr/debug-jsreftest-5", + "option_collection": { + "debug": true + }, "machine_platform": { "platform": "linux64", "os_name": "linux", "architecture": "x86_64" }, "build_system_type": "taskcluster", - "who": "thedude@lebowski.com", - "group_symbol": "PI", - "reason": "scheduler", - "group_name": "PulseIngestion", - "machine": "bld-linux64-ec2-104", + "who": "1653479167014846469@fakemail.com", + "group_symbol": "R", + "reason": "scheduled", + "group_name": "Reftests", + "machine": "1653479167014846469", "state": "completed", "result": "retry", + "log_references": [], + "tier": 1, + "job_symbol": "J5", + "job_guid": "57caed20-3ae8-455f-86f5-bce3260952d0/0", + "product_name": "Firefox", + "end_timestamp": 1740641689 + }, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "superseded": [] + }, + { + "job": { + "taskcluster_task_id": "VVa2amzMS-2cSDbig9RHsw", + "taskcluster_retry_id": 0, + "build_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639888, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-10", + "option_collection": { + "debug": true + }, + "machine_platform": { + "platform": "linux64", + "os_name": "linux", + "architecture": "x86_64" + }, + "build_system_type": "taskcluster", + "who": "7197484843170381829@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "7197484843170381829", + "state": "completed", + "result": "success", "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": "pending", - "name": "live_backing_log" + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/VVa2amzMS-2cSDbig9RHsw/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" } ], "tier": 1, - "job_symbol": "3", - "job_guid": "66c4b325-0bb7-43ba-b631-f7a120103329/0", - "product_name": "unknown", - "end_timestamp": 1419043197.0 + "job_symbol": "bc10", + "job_guid": "5556b66a-6ccc-4bed-9c48-36e283d447b3/0", + "product_name": "Firefox", + "end_timestamp": 1740640286 }, - "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", "superseded": [] }, { "job": { - "taskcluster_task_id": "bIzVZt9jQQKgvQYD3a2HQw", - "taskcluster_retry_id": 3, + "taskcluster_task_id": "YIOK401yR2GvygIFcfPVBg", + "taskcluster_retry_id": 0, "build_platform": { "platform": "linux64", "os_name": "linux", "architecture": "x86_64" }, - "submit_timestamp": 1419035997.0, - "start_timestamp": 1419039597.0, - "name": "test-windows10-64-vm/opt-jsreftest", - "option_collection": {}, + "submit_timestamp": 1740638716, + "start_timestamp": 1740639890, + "name": "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-3", + "option_collection": { + "debug": true + }, "machine_platform": { "platform": "linux64", "os_name": "linux", "architecture": "x86_64" }, "build_system_type": "taskcluster", - "who": "thedude@lebowski.com", - "group_symbol": "PI", - "reason": "scheduler", - "group_name": "PulseIngestion", - "machine": "bld-linux64-ec2-104", + "who": "258492717194919941@fakemail.com", + "group_symbol": "M-spi-nw", + "reason": "scheduled", + "group_name": "Mochitests with networking on socket process enabled", + "machine": "258492717194919941", "state": "completed", - "result": "testfailed", + "result": "success", "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": "pending", - "name": "live_backing_log" + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/YIOK401yR2GvygIFcfPVBg/runs/0/artifacts/public/logs/live_backing.log", + "name": "live_backing_log", + "parse_status": "pending" } ], "tier": 1, - "job_symbol": "3", - "job_guid": "6c8cd566-df63-4102-a0bd-0603ddad8743/3", - "product_name": "unknown", - "end_timestamp": 1419043197.0 + "job_symbol": "bc3", + "job_guid": "60838ae3-4d72-4761-afca-020571f3d506/0", + "product_name": "Firefox", + "end_timestamp": 1740640258 }, - "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf", + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", "superseded": [] } ] diff --git a/tests/sample_data/push_data.json b/tests/sample_data/push_data.json index 386e09f0c37..3c27055de7f 100644 --- a/tests/sample_data/push_data.json +++ b/tests/sample_data/push_data.json @@ -1,166 +1,459 @@ [ { - "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf", - "push_timestamp": 1384347643, - "author": "Eric Chou ", + "id": 1592793, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "author": "hacker0@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740667261, + "repository_id": 77, "revisions": [ { - "comment": "Bug 936711 - Fix crash which happened at disabling Bluetooth during reconnection. r=gyeh, a=koi+", - "author": "Eric Chou ", - "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf" + "result_set_id": 1592793, + "repository_id": 77, + "revision": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "author": "Hacker 0 ", + "comment": "Bug 1948118 - Reword JSMSG_TEMPORAL_UNEXPECTED_PROPERTY error message; r=dminor\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239274" } ] }, { - "revision": "b11529c9865a4dee3a93d63d119ebb89fcbbdf69", - "push_timestamp": 1384353511, - "author": "Gaia Pushbot ", + "id": 1592778, + "revision": "9fc3318eca2cb058653f6c1cdc49aa5f702a125d", + "author": "hacker1@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740666459, + "repository_id": 77, "revisions": [ { - "comment": "Bumping gaia.json for 1 gaia-1_2 revision(s) a=gaia-bump\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/b946d5776d33\nAuthor: Ben Kelly \nDesc: Merge pull request #13593 from wanderview/contacts-group-overflow\n\nBug 937291: Limit overflow of each group list. r=jmcf", - "author": "Gaia Pushbot ", - "revision": "b11529c9865a4dee3a93d63d119ebb89fcbbdf69" + "result_set_id": 1592778, + "repository_id": 77, + "revision": "9fc3318eca2cb058653f6c1cdc49aa5f702a125d", + "author": "Hacker 1 ", + "comment": "Bug 1927258 - Add a fade effect when vertical pinned tabs overflow r=sidebar-reviewers,desktop-theme-reviewers,tabbrowser-reviewers,emilio,reusable-components-reviewers,dao,tgiles,sfoster\n\nDifferential Revision: https://phabricator.services.mozilla.com/D237645" } ] }, { - "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc", - "push_timestamp": 1384363842, - "author": "Gaia Pushbot ", + "id": 1592773, + "revision": "5b7262c5abe195bde3a2781d67b06ae46d6be775", + "author": "hacker2@fakemail.com", + "revision_count": 6, + "push_timestamp": 1740666065, + "repository_id": 77, "revisions": [ { - "comment": "Bumping gaia.json for 1 gaia-1_2 revision(s) a=gaia-bump\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/b5b1d9aa0cc4\nAuthor: Sergey Tupchiy \nDesc: Bug 934402 - Write an atom to send SMS using 'MozSMS' API", - "author": "Gaia Pushbot ", - "revision": "130965d3df6c9a1093b4725f3b877eaef80d72bc" + "result_set_id": 1592773, + "repository_id": 77, + "revision": "5b7262c5abe195bde3a2781d67b06ae46d6be775", + "author": "Hacker 2 ", + "comment": "Bug 1853108 - Fix race in CrashSubmit.pendingIDs on file iterations r=afranchuk\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239759" + }, + { + "result_set_id": 1592773, + "repository_id": 77, + "revision": "43aafd88781aa195a4b39aaa090b54a4ab1145be", + "author": "Hacker 2 ", + "comment": "Bug 1853108 - Correct asyncness of UnsubmittedCrashHandler r=afranchuk\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239758" + }, + { + "result_set_id": 1592773, + "repository_id": 77, + "revision": "d5d2313745137b56373709d6e449cb4e710a0b92", + "author": "Hacker 2 ", + "comment": "Bug 1853108 - Add testing of interesting crash nightly only enabling r=afranchuk,gsvelto\n\nDifferential Revision: https://phabricator.services.mozilla.com/D226876" + }, + { + "result_set_id": 1592773, + "repository_id": 77, + "revision": "04e9eed62cbd155fe06584aab65d06eacb012116", + "author": "Hacker 2 ", + "comment": "Bug 1853108 - Add testing of interesting crash notification r=afranchuk,gsvelto\n\nDifferential Revision: https://phabricator.services.mozilla.com/D224776" + }, + { + "result_set_id": 1592773, + "repository_id": 77, + "revision": "6259bfb753d36c3b071493440800452bd01c46c1", + "author": "Hacker 2 ", + "comment": "Bug 1853108 - Add testing of interesting crash identification r=afranchuk,gsvelto\n\nDifferential Revision: https://phabricator.services.mozilla.com/D224775" + }, + { + "result_set_id": 1592773, + "repository_id": 77, + "revision": "1f132039993b52113392be84ce033b339a20f359", + "author": "Hacker 2 ", + "comment": "Bug 1853108 - Extract interesting crash based on Remote Settings request and ask user for submission r=afranchuk,gsvelto,fluent-reviewers,bolsson\n\nDifferential Revision: https://phabricator.services.mozilla.com/D211752" } ] }, { - "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1", - "push_timestamp": 1384358742, - "author": "Gaia Pushbot ", + "id": 1592766, + "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b", + "author": "hacker3@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740664940, + "repository_id": 77, "revisions": [ { - "comment": "Bumping gaia.json for 2 gaia-1_2 revision(s) a=gaia-bump\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/39145004f7c6\nAuthor: Teodosia Pop \nDesc: Merge pull request #13659 from AndreiH/bug925851_v1.2\n\nBug 925851 - Re-enable test_capture_multiple_shots\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/b8010ab0e121\nAuthor: Andrei Hutusoru \nDesc: Bug 925851 - Re-enable test_capture_multiple_shots", - "author": "Gaia Pushbot ", - "revision": "9d54ce168c996edaf211bf0edb20462675ad6ea1" + "result_set_id": 1592766, + "repository_id": 77, + "revision": "9994bf4500967f92c9a0576bf142978c7bd88f4b", + "author": "Hacker 3 ", + "comment": "Bug 1949205 - Create artifacts directory if it doesn't exist. r=perftest-reviewers,afinder\n\nThis patch ensures that the artifacts directory gets created if it doesn't exist when running mach perftest locally. It also adds a check for the existence of the output directory during mochitest gecko profiling. At the same time, the aritfacts folder is added to the hg/git ignore files.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D238791" } ] }, { - "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47", - "push_timestamp": 1384365342, - "author": "Gaia Pushbot ", + "id": 1592755, + "revision": "d4b495f59add6b075aa7f16de01d009f28090d5d", + "author": "hacker4@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740664029, + "repository_id": 77, "revisions": [ { - "comment": "Bumping gaia.json for 8 gaia-1_2 revision(s) a=gaia-bump\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/3b19a90a8cec\nAuthor: Germán Toro del Valle \nDesc: Merge pull request #13628 from gtorodelvalle/contacts-bug-936283-search-bar-plus-Gmail-or-Outlook\n\nBug 936283 - [B2G][Contacts] Search bar stops functioning when searching contacts in Gmail or Outlook more than once(cherry picked from commit 351f9ad4b8f5e427cd90ae6bdfbafb9a4c9639c7)\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/aa52963f4c22\nAuthor: Timothy Guan-tin Chien \nDesc: Merge pull request #13604 from snowmantw/issue937023\n\nBug 937023 - [v1.2] Remove transparent to blue transition of lock screen handle and animation after unlock, r=timdream(cherry picked from commit 002578cc3cd0ca31e1333aafd8d019d9dd83e408)\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/05617615ced6\nAuthor: Timothy Guan-tin Chien \nDesc: Merge pull request #13570 from timdream/keyboard-settings-back\n\nBug 914093 - Back button for Gaia Keyboard settings page, r=rudyl(cherry picked from commit 9abc79e45a7283a557f177a3f9b54bec2668a2b8)\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/13af00ed5c50\nAuthor: Andrew Sutherland \nDesc: Merge pull request #13540 from asutherland/makefile-fix\n\nBug 931550 - Clock and Mail app only have rocket icon on homescreen, can't launch/broken. r=:yurenju(cherry picked from commit 513bafaceb391b5fb102ae3ac5a2a753f91ce164)\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/d0df3d96ac80\nAuthor: Fernando Campo \nDesc: Merge pull request #13516 from fcampo/sim-import-FTE-933381\n\nBug 933381 - [FTE] No message when importing from empty SIM (r=jmcf)(cherry picked from commit c560ddbda27b4c3cc129acad2fa8a6ec0d148308)\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/3521ebd132ea\nAuthor: Jose M. Cantera \nDesc: Merge pull request #13531 from fcampo/retry-import-Contacts-935301\n\nBug 935301 - [Contacts] Clicking retry on error while importing from SD doesn't retry(cherry picked from commit 164bed00446439e2aabb6e58587c379ff8850800)\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/303169692648\nAuthor: Jan Jongboom \nDesc: Merge pull request #13568 from comoyo/hu_gone\n\nBug 936579 - Bring back Hungarian autocorrect. r=RudyL(cherry picked from commit fecd21241feb20df0e9bbed2f279c42112cd283c)\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/70d7967a35e7\nAuthor: mpizza \nDesc: Bug 936418 - [keyboard] 'Layout selection' in keyboard style switcher dialog isn't localized\n(cherry picked from commit ff35da1e70028276510c39f7ebaa421a7acb3ade)", - "author": "Gaia Pushbot ", - "revision": "a69390334818373e2d7e6e9c8d626a328ed37d47" + "result_set_id": 1592755, + "repository_id": 77, + "revision": "d4b495f59add6b075aa7f16de01d009f28090d5d", + "author": "Hacker 4 ", + "comment": "Bug 1950814 - Update PDF.js to new version a4fea2dafd4db156f9afcd080e2fa59f74d1dc52 r=pdfjs-reviewers,Snuffleupagus\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239872" } ] }, { - "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963", - "push_timestamp": 1384364465, - "author": "Gaia Pushbot ", + "id": 1592701, + "revision": "b2a46b1f3c48376d1093a5e9c45751465013aadb", + "author": "hacker5@fakemail.com", + "revision_count": 5, + "push_timestamp": 1740660946, + "repository_id": 77, "revisions": [ { - "comment": "Bumping gaia.json for 1 gaia-1_2 revision(s) a=gaia-bump\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/c7e53e332dcb\nAuthor: Julien Wajsberg \nDesc: Revert \"Merge pull request #13504 from jaoo/927486\"\n\nThis reverts commit c624b65c1333d2f951533ff5f5d3094681cb1916.", - "author": "Gaia Pushbot ", - "revision": "7f417c3505e3d2599ac9540f02e3dbee307a3963" + "result_set_id": 1592701, + "repository_id": 77, + "revision": "b2a46b1f3c48376d1093a5e9c45751465013aadb", + "author": "Hacker 5 ", + "comment": "Bug 1950787 - Update AndroidX Navigation to version 2.8.8. r=android-reviewers,petru\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239847" + }, + { + "result_set_id": 1592701, + "repository_id": 77, + "revision": "f68184433e7129d3481db64024810f306ab7ac3c", + "author": "Hacker 5 ", + "comment": "Bug 1950787 - Update AndroidX DataStore to version 1.1.3. r=android-reviewers,petru\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239846" + }, + { + "result_set_id": 1592701, + "repository_id": 77, + "revision": "50871cc647c32f989ac53adc5972a728a61dc8c2", + "author": "Hacker 5 ", + "comment": "Bug 1950787 - Update AndroidX CoordinatorLayout to version 1.3.0. r=android-reviewers,petru\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239845" + }, + { + "result_set_id": 1592701, + "repository_id": 77, + "revision": "baedebfffbdf0dfceca06a2b4793f27f23212869", + "author": "Hacker 5 ", + "comment": "Bug 1950787 - Update AndroidX ConstraintLayout to version 2.2.1. r=android-reviewers,petru\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239844" + }, + { + "result_set_id": 1592701, + "repository_id": 77, + "revision": "4963cf404d247093c89d643b9a577e21db1731db", + "author": "Hacker 5 ", + "comment": "Bug 1950787 - Update AndroidX Activity to version 1.10.1. r=android-reviewers,petru\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239843" } ] }, { - "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2", - "push_timestamp": 1384365942, - "author": "Gaia Pushbot ", + "id": 1592684, + "revision": "13d8dcf01534051c16679c8bfca0ec9f4b5a20af", + "author": "hacker6@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740659309, + "repository_id": 77, "revisions": [ { - "comment": "Bumping gaia.json for 2 gaia-1_2 revision(s) a=gaia-bump\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/33a44ec49b53\nAuthor: Bob Silverberg \nDesc: Merge pull request #13662 from AndreiH/bug934446_v1.2\n\nBug 934446 - Test Messages contact input validation\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/c6fdfdccfb2e\nAuthor: Andrei Hutusoru \nDesc: Bug 934446 - Test Messages contact input validation", - "author": "Gaia Pushbot ", - "revision": "f361dcb60bbedaa01257fbca211452972f7a74b2" + "result_set_id": 1592684, + "repository_id": 77, + "revision": "13d8dcf01534051c16679c8bfca0ec9f4b5a20af", + "author": "Hacker 6 ", + "comment": "Bug 1950658 - Rely on a pref to tell us whether we should initialize Glean on shutdown r=TravisLong\n\nOnly once the user interacted with the telemetry reporting policy modal\nwe can be sure that the preference for collection is valid.\nIf it's not we don't initialize Glean and thus don't collect any data.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239753" } ] }, { - "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82", - "push_timestamp": 1384366574, - "author": "Gaia Pushbot ", + "id": 1592653, + "revision": "3ac16171e8452be96d9962a84a11b21f702303a8", + "author": "hacker7@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740656382, + "repository_id": 77, "revisions": [ { - "comment": "Bumping gaia.json for 2 gaia-1_2 revision(s) a=gaia-bump\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/2ba51c7eadb0\nAuthor: Bob Silverberg \nDesc: Merge pull request #13624 from teodosia/aurora-contact-photo-wait\n\nBug 937068 - Unxfail and enhance wait in test_contact_add_photo\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/d195214d4708\nAuthor: Teodosia Pop \nDesc: Bug 937068 - Unxfail and enhance wait in test_contact_add_photo", - "author": "Gaia Pushbot ", - "revision": "ce17cad5d554cfffddee13d1d8421ae9ec5aad82" + "result_set_id": 1592653, + "repository_id": 77, + "revision": "3ac16171e8452be96d9962a84a11b21f702303a8", + "author": "Hacker 7 ", + "comment": "No Bug, mozilla-central repo-update HSTS HPKP remote-settings tld-suffixes mobile-experiments ct-logs - r=release-managers,pascalc\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239890" } ] }, { - "revision": "997b28cb87373456789012345678901234567890", - "push_timestamp": 1384367498, - "author": "Ryan VanderMeulen ", + "id": 1592621, + "revision": "14c4f05a83085c47a53924facb4d67be7028fbbf", + "author": "hacker8@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740653485, + "repository_id": 77, "revisions": [ { - "comment": "Bug 930281 - Use nsINode instead of nsIContent. r=smaug, a=lsblakk.", - "author": "Henri Sivonen ", - "revision": "ccc02c89ecc109844707eac9203d377a9dca7c0c" - }, + "result_set_id": 1592621, + "repository_id": 77, + "revision": "14c4f05a83085c47a53924facb4d67be7028fbbf", + "author": "Hacker 8 ", + "comment": "Bug 1949778 - Remove networking.set_cookie_expired_without_server_time metric, r=valentin,cookie-reviewers\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239337" + } + ] + }, + { + "id": 1592617, + "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d", + "author": "hacker9@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740653223, + "repository_id": 77, + "revisions": [ { - "comment": "Bug 929261 - Fix for GetElementIC. r=shu, a=abillings", - "author": "Eric Faust ", - "revision": "80d76b93040f3456789012345678901234567890" - }, + "result_set_id": 1592617, + "repository_id": 77, + "revision": "965ff2a32f69a56828c505b6aa7a5f1f27ada03d", + "author": "Hacker 9 ", + "comment": "Bug 1943896: Ensure updating Unified Search Button icon before appmenu test r=daleharvey\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239853" + } + ] + }, + { + "id": 1592583, + "revision": "1ac6fb799e6c0f3298a0ea4a073d8a3665e6ac6f", + "author": "hacker10@fakemail.com", + "revision_count": 2, + "push_timestamp": 1740651767, + "repository_id": 77, + "revisions": [ { - "comment": "Bug 919021 - Convert ctypes over to use JS::AutoValueVector instead of its own array class. r=terrence, a=lsblakk", - "author": "Jeff Walden ", - "revision": "949dbbda2cfc3456789012345678901234567890" + "result_set_id": 1592583, + "repository_id": 77, + "revision": "1ac6fb799e6c0f3298a0ea4a073d8a3665e6ac6f", + "author": "Hacker 10 ", + "comment": "Bug 1944109 - [devtools] Allow debugging scripts via their WindowGlobal target when reusing the browser toolbox codepath. r=devtools-reviewers,devtools-backward-compat-reviewers,hbenl,bomsy\n\nThe Browser Toolbox currently debug all scripts in a given content process\nvia the related Content Process Target actor.\nBecause of this, we have to ignore the WindowGlobal Target actors\nfor anything related to Sources, breakpoints,...\n\nBut VS.Code would benefit from reusing the Browser Toolbox codepath,\nwhile never using the Content Process targets (which have no real meaning for the user in VS.code),\nand instead debug the sources via the WindowGlobal Target actors.\n\nIntroduce a new configuration to be able to distinguish the two codepaths.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D235681" }, { - "comment": "Bug 927073 - Binary compatibility broken for maintenance releases due to strict version-script - regression fix. r=glandium, a=lsblakk", - "author": "Philipp Kewisch ", - "revision": "344b9cd8dc623456789012345678901234567890" - }, + "result_set_id": 1592583, + "repository_id": 77, + "revision": "782e9a5834e894a45ceef196da4aadea64ad1a50", + "author": "Hacker 10 ", + "comment": "Bug 1944107 - [devtools] Instantiate Content Script targets when debugging all contexts. r=devtools-reviewers,hbenl,bomsy\n\nThe TargetCommand will avoid listening for CONTENT_SCRIPT targets for the browser toolbox,\nso we can safely enable them in the server.\nThis will allow VsCode to listen for CONTENT_SCRIPT, while not spawning the CONTENT_PROCESS ones.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D235680" + } + ] + }, + { + "id": 1592578, + "revision": "76f52cdab561938e3b336dc35def5782be52d003", + "author": "hacker11@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740651651, + "repository_id": 77, + "revisions": [ { - "comment": "Bug 934062 - Add waitForExplicitFinish to stop intermittent CSP test errors. r=sstamm, a=test-only", - "author": "Garrett Robinson ", - "revision": "1ba2f441a4183456789012345678901234567890" - }, + "result_set_id": 1592578, + "repository_id": 77, + "revision": "76f52cdab561938e3b336dc35def5782be52d003", + "author": "Hacker 11 ", + "comment": "Bug 1950503 - Fix a couple of minor issues in search service code with the Rust Search Engine Selector turned on. r=mcheang\n\nThis corrects the filtering for enterprise parameters so that simple value parameters are not filtered out in enterprise scenarios.\nAlso fixes the tests for variant/subvariants to match against the telemetry suffix being the empty string rather than null.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239668" + } + ] + }, + { + "id": 1592576, + "revision": "27e624bb782b495a0a98f1625d758229f5da82f4", + "author": "hacker12@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740651602, + "repository_id": 77, + "revisions": [ { - "comment": "Bug 913160 - Back out Bug 894331 to solve browser hangs when deleting history. a=lsblakk", - "author": "Marco Bonardo ", - "revision": "1008d70074113456789012345678901234567890" - }, + "result_set_id": 1592576, + "repository_id": 77, + "revision": "27e624bb782b495a0a98f1625d758229f5da82f4", + "author": "Hacker 12 ", + "comment": "Bug 1950672 - Text Fragments: Improve timeout watchdog for creating text fragments. r=dom-core,farre\n\nThe inner loop can in some edge cases be expensive,\ntherefore the timeout should be checked there.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239763" + } + ] + }, + { + "id": 1592574, + "revision": "a0c8e81abd314591557671bc506d9ae8f5b04c97", + "author": "hacker13@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740651550, + "repository_id": 77, + "revisions": [ { - "comment": "Bug 921816 - Handle idls in --with-libxul-sdk builds. r=gps, a=lsblakk", - "author": "Mike Hommey ", - "revision": "77e95b4af9f03456789012345678901234567890" - }, + "result_set_id": 1592574, + "repository_id": 77, + "revision": "a0c8e81abd314591557671bc506d9ae8f5b04c97", + "author": "Hacker 13 ", + "comment": "Bug 1846465 - [devtools] Make codemirror 5 built-in search UI persistent. r=devtools-reviewers,ochameau.\n\nOverriding the search shortcut allows us to execute the findPersistent command,\nwhich prevents the search input to be closed when the user hit Enter.\n\nA test is added to cover the new functionality.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D237232" + } + ] + }, + { + "id": 1592573, + "revision": "7809fecc7a42e2aefc40a0b9709a7e471f7d6d00", + "author": "hacker14@fakemail.com", + "revision_count": 3, + "push_timestamp": 1740651496, + "repository_id": 77, + "revisions": [ { - "comment": "Bug 921776 - Notification completed not showing when download was started from a private tab. r=wesj, a=lsblakk", - "author": "Federico Paolinelli ", - "revision": "a39f4c0f075d3456789012345678901234567890" + "result_set_id": 1592573, + "repository_id": 77, + "revision": "7809fecc7a42e2aefc40a0b9709a7e471f7d6d00", + "author": "Hacker 14 ", + "comment": "Bug 1885620 - Use ESLint's setup_helper to setup modules for TypeScript (mach ts). r=ahal\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239366" }, { - "comment": "Bug 934900 - Ensure back/forward are not re-enabled while in editing mode. r=sriram, a=lsblakk", - "author": "Lucas Rocha ", - "revision": "9ba6a44a6dfa3456789012345678901234567890" + "result_set_id": 1592573, + "repository_id": 77, + "revision": "b51c74f0a57b6f58f63b115059363063315c502b", + "author": "Hacker 14 ", + "comment": "Bug 1950119 - Update TypeScript targets to es2024. r=zombie,translations-reviewers,nordzilla\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239352" }, { - "comment": "Merge m-b to b2g26. a=merge", - "author": "Ryan VanderMeulen ", - "revision": "997b28cb87373456789012345678901234567890" + "result_set_id": 1592573, + "repository_id": 77, + "revision": "c13e9174506ca54143b4d29e7e7e63631d235ae7", + "author": "Hacker 14 ", + "comment": "Bug 1950119 - Update TypeScript to the latest version and fix package versions. r=zombie\n\nWe fix the package versions to make it easier for the setup checker to detect mismatched package versions.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239351" + } + ] + }, + { + "id": 1592570, + "revision": "9b8386cc6f367cb399a4ba05078d8edd3ee4c521", + "author": "hacker15@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740651277, + "repository_id": 77, + "revisions": [ + { + "result_set_id": 1592570, + "repository_id": 77, + "revision": "9b8386cc6f367cb399a4ba05078d8edd3ee4c521", + "author": "Hacker 15 ", + "comment": "Backed out changeset 9b109e9ea048 (bug 1914920) for causing build bustages @FeatureManifest.sys.mjs.stub. CLOSED TREE" + } + ] + }, + { + "id": 1592529, + "revision": "442da0661695ac00b0b83f1aac7d73b6250cf47e", + "author": "hacker16@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740649444, + "repository_id": 77, + "revisions": [ + { + "result_set_id": 1592529, + "repository_id": 77, + "revision": "442da0661695ac00b0b83f1aac7d73b6250cf47e", + "author": "Hacker 16 ", + "comment": "Bug 1929840 - Avoid resolving not yet created promise; r=dom-storage-reviewers,jari\n\nEnsure that mInitializeAllTemporaryOriginsPromiseHolder is initialized before\ncalling processNextGroup. This is necessary because the inner function\nprocessNextGroup can synchronously attempt to resolve the promise.\n\nWithout this fix:\n- Consumers may endlessly wait for the promise, as it might never be resolved\n or rejected.\n- In debug builds, an assertion failure may occur at shutdown, indicating that\n the promise exists but was never settled.\n\nTo prevent these issues, a RefPtr is assigned at the start of the\nfunction and returned at the end, ensuring proper initialization.\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239711" + } + ] + }, + { + "id": 1592527, + "revision": "f36dfab840ade2744022252f20e637977b75bc51", + "author": "hacker17@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740649393, + "repository_id": 77, + "revisions": [ + { + "result_set_id": 1592527, + "repository_id": 77, + "revision": "f36dfab840ade2744022252f20e637977b75bc51", + "author": "Hacker 17 ", + "comment": "Bug 1950706 - Use correct snap wrapper for geckodriver as well r=benchatt\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239814" + } + ] + }, + { + "id": 1592525, + "revision": "72e9e2e38ff870bcede5afea8d5af719ef1ca262", + "author": "hacker18@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740649343, + "repository_id": 77, + "revisions": [ + { + "result_set_id": 1592525, + "repository_id": 77, + "revision": "72e9e2e38ff870bcede5afea8d5af719ef1ca262", + "author": "Hacker 18 ", + "comment": "Bug 1949508 - Hold onto PlacesWeakCallbackWrapper instances. r=Standard8,places-reviewers\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239129" + } + ] + }, + { + "id": 1592523, + "revision": "303e1fad8d6ddf406ca32cfb9ccddf8cfe407db5", + "author": "hacker19@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740649293, + "repository_id": 77, + "revisions": [ + { + "result_set_id": 1592523, + "repository_id": 77, + "revision": "303e1fad8d6ddf406ca32cfb9ccddf8cfe407db5", + "author": "Hacker 19 ", + "comment": "Bug 1950189 - Allow callouts to be dismissed by Esc even if they're not focused. r=omc-reviewers,emcminn\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239402" + } + ] + }, + { + "id": 1592521, + "revision": "d1af5ea6ffba53b72637a39ffc327ff2bb4cb48b", + "author": "hacker20@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740649243, + "repository_id": 77, + "revisions": [ + { + "result_set_id": 1592521, + "repository_id": 77, + "revision": "d1af5ea6ffba53b72637a39ffc327ff2bb4cb48b", + "author": "Hacker 20 ", + "comment": "Bug 1950637 - Move MOZ_APP_PROFILE from old-configure to moz.configure r=glandium\n\nDifferential Revision: https://phabricator.services.mozilla.com/D239821" } ] }, { - "revision": "26b1b814be96c1902561872049de1579549e0c29", - "push_timestamp": 1384377343, - "author": "Gaia Pushbot ", + "id": 1592519, + "revision": "9b109e9ea0483af112effbe2c3ed30a8442c4810", + "author": "hacker21@fakemail.com", + "revision_count": 1, + "push_timestamp": 1740649193, + "repository_id": 77, "revisions": [ { - "comment": "Bumping gaia.json for 2 gaia-1_2 revision(s) a=gaia-bump\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/9cde9c357524\nAuthor: Bob Silverberg \nDesc: Merge pull request #13618 from viorelaioia/bug_937344_v1.2\n\n[v1.2] Bug 937344 - Replace get_all_video files in test_camera_capture_video with video_files property\n\n========\n\nhttps://hg.mozilla.org/integration/gaia-1_2/rev/d7f28b459e97\nAuthor: Viorela Ioia \nDesc: [v1.2] Bug 937344 - Replace get_all_video files in test_camera_capture_video with video_files property", - "author": "Gaia Pushbot ", - "revision": "26b1b814be96c1902561872049de1579549e0c29" + "result_set_id": 1592519, + "repository_id": 77, + "revision": "9b109e9ea0483af112effbe2c3ed30a8442c4810", + "author": "Hacker 21 ", + "comment": "Bug 1914920 - Add http3.use_nspr_for_io pref to Nimbus r=acreskey\n\nDifferential Revision: https://phabricator.services.mozilla.com/D220130" } ] } diff --git a/tests/sample_data/transform.py b/tests/sample_data/transform.py new file mode 100644 index 00000000000..9ddd381df74 --- /dev/null +++ b/tests/sample_data/transform.py @@ -0,0 +1,387 @@ +import datetime +import json + +import pytz +import requests + + +def parse_build_platform(name, os_field="os_name"): + platform = "" + os_name = "" + arch = "" + + platforms = ["win", "mac", "linux", "android"] + architectures = ["x86_64", "x86", "aarch64", "armv7", "arm"] + platform = [p for p in platforms if p in name.lower()] + if not platform: + return {} + os_name = platform[0] + arch = [a for a in architectures if a in name] + if not arch: + # look for 64 or 32: + if "32" in name: + arch = "x86" + platform = f"{os_name}32" + elif "64" in name: + arch = "x86_64" + platform = f"{os_name}64" + else: + return {} + else: + arch = arch[0] + platform = f"{os_name}_{arch}" + return {"platform": platform, os_field: os_name, "architecture": arch} + + +def get_tasks(project, revision): + # 1) get push information, find results[0]["id"] <- this will be the push_id + # https://treeherder.mozilla.org/api/project/autoland/push/?full=true&count=10&revision=473a353f2aeaaf904a08f7c1f287b5607d9e8cb9 + # 2) with push_id, get all tasks + # https://treeherder.mozilla.org/api/jobs/?push_id=1587059 + + retval = [] + + url = f"https://treeherder.mozilla.org/api/project/{project}/push/?full=true&count=10&revision={revision}" + response = requests.get(url, headers={"User-agent": "mach-test-info/1.0"}) + data = response.json() + push_id = data["results"][0]["id"] + + url = f"https://treeherder.mozilla.org/api/jobs/?push_id={push_id}" + response = requests.get(url, headers={"User-agent": "mach-test-info/1.0"}) + data = response.json() + + # set a max of 100 tasks for a given revision, just so we don't have too much data + for task in data["results"]: + job_id = task[1] + + # https://treeherder.mozilla.org/api/project/autoland/jobs/495738649/ + url = f"https://treeherder.mozilla.org/api/project/{project}/jobs/{job_id}/" + response = requests.get(url, headers={"User-agent": "mach-test-info/1.0"}) + data = response.json() + retval.append(data) + if len(retval) >= 100: + break + + return retval + + +def tasks_to_jobdata(all_tasks, project, revision): + # get option collection hash to translate + url = "https://treeherder.mozilla.org/api/optioncollectionhash/" + response = requests.get(url, headers={"User-agent": "mach-test-info/1.0"}) + och = response.json() + + retval = [] + for task in all_tasks: + build_platform = parse_build_platform(task["build_platform"]) + if not build_platform: + # gecko-decision, lint, xyz-cross, a few others + continue + + if not task["logs"]: + # could be a failed task (infra, cancelled, retry, etc.) + continue + + if not retval and not task["job_type_name"].startswith("test-"): + # ensure we have a test task as the first in the list + continue + + # only accept gtest, xpcshell, mochitest, reftest + if task["job_type_name"].startswith("test-") and not any( + [ + s in task["job_type_name"] + for s in ["gtest", "xpcshell", "mochitest", "reftest"] + ] + ): + continue + + # only accept (chunk 1) as well as other tasks + if task["job_type_name"].startswith("test-"): + try: + if int(task["job_type_name"].split("-")[-1]) < 3: + continue + except ValueError: + pass + + results = { + "project": "mozilla-central", # project - hacked for testing purposes, + "job": { + "build_platform": parse_build_platform(task["build_platform"]), + "submit_timestamp": task["submit_timestamp"], + "start_timestamp": task["start_timestamp"], + "job_guid": task["job_guid"], + "name": task["job_type_name"], # task["job_group_name"].split(" ")[0], + "reference_data_name": task["ref_data_name"], + "log_references": [ + {"url": task["logs"][0]["url"], "name": task["logs"][0]["name"]} + ], + "option_collection": [ + {x["options"][0]["name"]: True} + for x in och + if x["option_collection_hash"] == task["option_collection_hash"] + ][0], + "who": f"{task['machine_name'][:20]}@fakemail.com", # task["who"], <= protect the privacy of real developers + "group_symbol": task["job_group_symbol"], + "state": task["state"], + "artifact": {"log_urls": [], "type": "", "name": "", "blob": ""}, + "machine_platform": parse_build_platform(task["job_type_name"]), + "machine": task["machine_name"], + "reason": task["reason"], + "result": task["result"], + "job_symbol": task["job_type_symbol"], + "group_name": task["job_group_name"], + "product_name": "firefox", # hardcoded + "end_timestamp": task["end_timestamp"], + }, + "revision": revision, + } + retval.append(results) + + return retval + + +# get last 50 pushes, write raw data to 'output_file' and return list of revisions +def get_push_data(project, output_file): + retval = [] + output = [] + + # ideally autoland `hg log -50` + # https://treeherder.mozilla.org/api/project/autoland/push/?full=true&count=50 + url = f"https://treeherder.mozilla.org/api/project/{project}/push/?count=50" + response = requests.get(url, headers={"User-agent": "mach-test-info/1.0"}) + data = response.json() + + for result in data["results"]: + blob = { + "id": result["id"], + "revision": result["revision"], + "author": result["author"], + "revision_count": result["revision_count"], + "push_timestamp": result["push_timestamp"], + "repository_id": result["repository_id"], + "revisions": [], + } + for r in result["revisions"]: + blob["revisions"].append( + { + "result_set_id": r["result_set_id"], + "repository_id": r["repository_id"], + "revision": r["revision"], + "author": "Fake Hacker ", # preserve identidy: r["author"], + "comment": r["comments"], + } + ) + output.append(blob) + + with open(output_file, "w") as f: + json.dump(output, f, indent=2) + + for item in data["results"]: + retval.append(item["revision"]) + + return retval + + +def reduce_push_data(top_revision, output_file): + with open(output_file) as f: + data = json.load(f) + + startlen = len(data) + output = [] + + for item in data: + if item["revision"] != top_revision and not output: + continue + item["author"] = f"hacker{len(output)}@fakemail.com" + for revision in item["revisions"]: + revision["author"] = ( + f"Hacker {len(output)} " + ) + output.append(item) + + with open(output_file, "w") as f: + json.dump(output, f, indent=2) + + print(f"Reduced push_data from {startlen} to {len(output)}") + + +def get_job_data(project, revisions, output_file): + # do at least 3, and between 250 and 500 tasks + jobdata = [] + total_tasks = 0 + revision_index = -1 + while total_tasks < 100: + rev = revisions[revision_index] + print(f"Getting data for revision: {rev} ...") + all_tasks = get_tasks(project, rev) + newjobs = tasks_to_jobdata(all_tasks, project, rev) + total_tasks += len(newjobs) + print(f" found {len(newjobs)} tasks to add to job data!") + if not len(newjobs): + revision_index -= 3 + continue + + # hack, create similar jobs; ensure we have at least 4 + if jobdata: + for field in [ + "build_platform", + "name", + "group_symbol", + "machine_platform", + "machine", + "job_symbol", + "group_name", + ]: + newjobs[0]["job"][field] = jobdata[0]["job"][field] + newjobs[-1]["job"][field] = jobdata[0]["job"][field] + jobdata.extend(newjobs) + revision_index -= 3 + + with open(output_file, "w") as f: + for jd in jobdata: + json.dump(jd, f) + f.write("\n") + return all_tasks, rev + + +def generate_pulse_job_data(tasks, revision, output_file): + # get option collection hash to translate + url = "https://treeherder.mozilla.org/api/optioncollectionhash/" + response = requests.get(url, headers={"User-agent": "mach-test-info/1.0"}) + och = response.json() + + retval = [] + transformed = [] + max_tasks = 30 + + for task in tasks: + if not task["job_type_name"].startswith("test-"): + continue + if not parse_build_platform(task["build_platform"]): + continue + + blob = { + "taskId": task["job_guid"], + "origin": { + "kind": "hg.mozilla.org", + "project": "set by test", + "revision": revision, + }, + "buildSystem": "taskcluster", + "display": { + "jobSymbol": task["job_type_symbol"], + "jobName": task["job_type_name"], + "groupSymbol": task["job_group_symbol"], + "groupName": task["job_group_name"], + }, + "state": task["state"], + "result": "fail" if "fail" in task["result"] else task["result"], + "jobKind": "test" if "test" in task["job_type_name"] else "build", + "runMachine": parse_build_platform(task["job_type_name"], os_field="os"), + "buildMachine": parse_build_platform(task["build_platform"], os_field="os"), + "owner": f"{task['machine_name'][:20]}@fakemail.com", # task["who"], <= protect the privacy of real developers + "reason": task["reason"], + "productName": "Firefox", + "labels": [ + x["options"][0]["name"] + for x in och + if x["option_collection_hash"] == task["option_collection_hash"] + ], + "version": 1, + "logs": [log for log in task["logs"] if "live" in log["name"]], + "jobInfo": { + "links": [ + { + "url": log["url"], + "linkText": log["name"], + "label": "artifact uploaded", + } + for log in task["logs"] + if "live" not in log["name"] + ] + }, + } + blob["runMachine"]["name"] = task["machine_name"] + blob["buildMachine"]["name"] = task["machine_name"] + + pst_tz = pytz.timezone("US/Pacific") + offset = 0 + blob["timeScheduled"] = ( + datetime.datetime.fromtimestamp(task["submit_timestamp"] - offset) + .replace(tzinfo=pytz.utc) + .astimezone(pst_tz) + .isoformat() + ) + blob["timeStarted"] = ( + datetime.datetime.fromtimestamp(task["start_timestamp"] - offset) + .replace(tzinfo=pytz.utc) + .astimezone(pst_tz) + .isoformat() + ) + blob["timeCompleted"] = ( + datetime.datetime.fromtimestamp(task["end_timestamp"] - offset) + .replace(tzinfo=pytz.utc) + .astimezone(pst_tz) + .isoformat() + ) + + offset = 8 * 3600 + job = { + "taskcluster_task_id": task["task_id"], + "taskcluster_retry_id": task["retry_id"], + "build_platform": parse_build_platform(task["build_platform"]), + "submit_timestamp": task["submit_timestamp"] + - offset, # subtract 8 hours to match pacific tz shift in job_data + "start_timestamp": task["start_timestamp"] + - offset, # subtract 8 hours to match pacific tz shift in job_data + "name": task["job_type_name"], + "option_collection": [ + {x["options"][0]["name"]: True} + for x in och + if x["option_collection_hash"] == task["option_collection_hash"] + ][0], + "machine_platform": parse_build_platform(task["job_type_name"]), + "build_system_type": task["build_system_type"], + "who": f"{task['machine_name'][:20]}@fakemail.com", # task["who"], <= protect the privacy of real developers + "group_symbol": task["job_group_symbol"], + "reason": task["reason"], + "group_name": task["job_group_name"], + "machine": task["machine_name"], + "state": task["state"], + "result": task["result"], + "log_references": [ + {"url": log["url"], "name": log["name"], "parse_status": "pending"} + for log in task["logs"] + if "live" in log["name"] + ], # TODO: parse_status? + "tier": 1, # task["tier"], <- treeherder transforms to tier1 by default for pulse task data + "job_symbol": task["job_type_symbol"], + "job_guid": task["job_guid"], + "product_name": "Firefox", # hardcoded + "end_timestamp": task["end_timestamp"] + - offset, # subtract 8 hours to match pacific tz shift in job_data + } + transformed.append({"job": job, "revision": revision, "superseded": []}) + + retval.append(blob) + if len(retval) >= max_tasks: + break + + with open(output_file, "w") as f: + json.dump(retval, f, indent=2) + + transformed_file = output_file.replace("/job", "/transformed_job") + with open(transformed_file, "w") as f: + json.dump(transformed, f, indent=2) + + +project = "autoland" +revisions = get_push_data(project, output_file="push_data2.json") +all_tasks, revision = get_job_data(project, revisions, output_file="job_data2.txt") +generate_pulse_job_data( + all_tasks, revision, output_file="pulse_consumer/job_data2.json" +) +reduce_push_data(revision, output_file="push_data2.json") + +# TODO: ensure test at first entry +# TODO: ensure multiple job_type_id's to test similar jobs (could be other platforms, but ideally platforms as well as revisions) diff --git a/tests/sample_data_generator.py b/tests/sample_data_generator.py index 9788ede12f4..71c63f5362b 100644 --- a/tests/sample_data_generator.py +++ b/tests/sample_data_generator.py @@ -73,7 +73,12 @@ def option_collection(**kwargs): def log_references(log_refs=None): if not log_refs: - log_refs = [{"url": "http://ftp.mozilla.org/pub/...", "name": "unittest"}] + log_refs = [ + { + "url": "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/...", + "name": "unittest", + } + ] return log_refs @@ -83,9 +88,9 @@ def build_platform(**kwargs): """ defaults = { - "platform": "WINNT5.1", + "platform": "Windows11", "os_name": "win", - "architecture": "x86", + "architecture": "x86_64", } defaults.update(kwargs) @@ -99,9 +104,9 @@ def machine_platform(**kwargs): """ defaults = { - "platform": "WINNT5.1", + "platform": "Windows11", "os_name": "win", - "architecture": "x86", + "architecture": "x86_64", } defaults.update(kwargs) diff --git a/tests/test_worker/test_stats.py b/tests/test_worker/test_stats.py index cfb675751f7..b166bc2213e 100644 --- a/tests/test_worker/test_stats.py +++ b/tests/test_worker/test_stats.py @@ -34,7 +34,7 @@ def test_publish_stats( settings.CELERY_STATS_PUBLICATION_DELAY = 10 statsd_client = MagicMock() get_worker_mock.return_value = statsd_client - assert Push.objects.count() == 10 + assert Push.objects.count() == 22 assert Job.objects.count() == 11 Push.objects.update(time=timezone.now() - timedelta(minutes=10)) Job.objects.update(end_time=timezone.now() - timedelta(minutes=10)) @@ -43,12 +43,11 @@ def test_publish_stats( publish_stats() assert [(level, message) for _, level, message in caplog.record_tuples] == [ (20, "Publishing runtime statistics to statsd"), - (20, "Ingested 10 pushes"), + (20, "Ingested 22 pushes"), (20, "Ingested 11 jobs in total"), ] - assert statsd_client.incr.call_args_list == [ - call("push", 10), - call("jobs", 11), - call("jobs_repo.mozilla-central", 11), - call("jobs_state.completed", 11), + assert statsd_client.incr.call_args_list == [call("push", 22), + call("jobs", 11), + call("jobs_repo.mozilla-central", 11), + call("jobs_state.completed", 11), ] diff --git a/tests/webapp/api/test_jobs_api.py b/tests/webapp/api/test_jobs_api.py index e52c5997ad9..bf3686ef40e 100644 --- a/tests/webapp/api/test_jobs_api.py +++ b/tests/webapp/api/test_jobs_api.py @@ -10,15 +10,19 @@ @pytest.mark.parametrize( ("offset", "count", "expected_num"), - [(None, None, 10), (None, 5, 5), (5, None, 6), (0, 5, 5), (10, 10, 1)], + [(None, None, 10), (None, 5, 5), (5, None, 10), (0, 5, 5), (10, 10, 10)], ) -def test_job_list(client, eleven_jobs_stored, test_repository, offset, count, expected_num): +def test_job_list( + client, eleven_jobs_stored, test_repository, offset, count, expected_num +): """ test retrieving a list of json blobs from the jobs-list endpoint. """ url = reverse("jobs-list", kwargs={"project": test_repository.name}) - params = "&".join([f"{k}={v}" for k, v in [("offset", offset), ("count", count)] if v]) + params = "&".join( + [f"{k}={v}" for k, v in [("offset", offset), ("count", count)] if v] + ) if params: url += f"?{params}" resp = client.get(url) @@ -85,7 +89,7 @@ def test_job_list_equals_filter(client, eleven_jobs_stored, test_repository): test retrieving a job list with a querystring filter. """ url = reverse("jobs-list", kwargs={"project": test_repository.name}) - final_url = url + "?job_guid=f1c75261017c7c5ce3000931dce4c442fe0a1297" + final_url = url + "?job_guid=688ae21b-be45-4312-91e0-756482665dce/0" resp = client.get(final_url) assert resp.status_code == 200 @@ -94,43 +98,45 @@ def test_job_list_equals_filter(client, eleven_jobs_stored, test_repository): job_filter_values = [ ("build_architecture", "x86_64"), - ("build_os", "mac"), - ("build_platform", "mac1120"), - ("build_platform_id", 3), + ("build_os", "linux"), + ("build_platform", "linux64"), + ("build_platform_id", 1), ("build_system_type", "buildbot"), - ("end_timestamp", 1384364849), + ("end_timestamp", 1740653215), ("failure_classification_id", 1), - ("id", 4), - ("job_group_id", 2), - ("job_group_name", "Mochitest"), - ("job_group_symbol", "M"), - ("job_guid", "ab952a4bbbc74f1d9fb3cf536073b371029dbd02"), - ("job_type_id", 2), - ("job_type_name", "Mochitest Browser Chrome"), - ("job_type_symbol", "bc"), - ("machine_name", "talos-r4-lion-011"), + ("id", 1), + ("job_group_id", 1), + ("job_group_name", "Mochitests with networking on socket process enabled"), + ("job_group_symbol", "M-spi-nw"), + ("job_guid", "01d9cc37-abcd-499c-8b2f-6e0d42d1c2de/0"), + ("job_type_id", 1), + ("job_type_name", "test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-3"), + ("job_type_symbol", "bc3"), + ("machine_name", "8449071809674708830"), ("machine_platform_architecture", "x86_64"), - ("machine_platform_os", "mac"), - ("option_collection_hash", "32faaecac742100f7753f0c1d0aa0add01b4046b"), - ("platform", "mac1120"), - ("reason", "scheduler"), + ("machine_platform_os", "linux"), + ("option_collection_hash", "6ae999552a0d2dca14d62e2bc8b764d377b1dd6c"), + ("platform", "linux64"), + ("reason", "scheduled"), ( "ref_data_name", - "Rev4 MacOSX Lion 10.7 mozilla-release debug test mochitest-browser-chrome", + "373a024b3b2d5dcbadbd7b5b8154485e821176c1", ), ("result", "success"), - ("result_set_id", 4), - ("signature", "d900aca1e93a9ef2d9e00c1877c838ea920abca1"), - ("start_timestamp", 1384356880), + ("result_set_id", 1), + ("signature", "75649c1b7546925c72dcce5cd7f1caadf5191b09"), + ("start_timestamp", 1740652940), ("state", "completed"), - ("submit_timestamp", 1384356854), + ("submit_timestamp", 1740651886), ("tier", 1), - ("who", "tests-mozilla-release-lion-debug-unittest"), + ("who", "8449071809674708830@fakemail.com"), ] @pytest.mark.parametrize(("fieldname", "expected"), job_filter_values) -def test_job_list_filter_fields(client, eleven_jobs_stored, test_repository, fieldname, expected): +def test_job_list_filter_fields( + client, eleven_jobs_stored, test_repository, fieldname, expected +): """ test retrieving a job list with a querystring filter. @@ -155,8 +161,8 @@ def test_job_list_in_filter(client, eleven_jobs_stored, test_repository): url = reverse("jobs-list", kwargs={"project": test_repository.name}) final_url = url + ( "?job_guid__in=" - "f1c75261017c7c5ce3000931dce4c442fe0a1297," - "9abb6f7d54a49d763c584926377f09835c5e1a32" + "002f1a2f-9f7e-4460-ba6a-b2bbf6fae336/0," + "69ef7298-de71-4ce3-8e38-2eb770bcaeb8/0" ) resp = client.get(final_url) @@ -170,14 +176,20 @@ def test_job_detail(client, test_job): endpoint. """ resp = client.get( - reverse("jobs-detail", kwargs={"project": test_job.repository.name, "pk": test_job.id}) + reverse( + "jobs-detail", + kwargs={"project": test_job.repository.name, "pk": test_job.id}, + ) ) assert resp.status_code == 200 assert isinstance(resp.json(), dict) assert resp.json()["id"] == test_job.id resp = client.get( - reverse("jobs-detail", kwargs={"project": test_job.repository.name, "pk": test_job.id}) + reverse( + "jobs-detail", + kwargs={"project": test_job.repository.name, "pk": test_job.id}, + ) ) assert resp.status_code == 200 assert resp.json()["taskcluster_metadata"] == { @@ -212,7 +224,8 @@ def test_text_log_errors(client, test_job): TextLogError.objects.create(job=test_job, line="failure 2", line_number=102) resp = client.get( reverse( - "jobs-text-log-errors", kwargs={"project": test_job.repository.name, "pk": test_job.id} + "jobs-text-log-errors", + kwargs={"project": test_job.repository.name, "pk": test_job.id}, ) ) assert resp.status_code == 200 @@ -236,7 +249,7 @@ def test_text_log_errors(client, test_job): @pytest.mark.parametrize( ("offset", "count", "expected_num"), - [(None, None, 3), (None, 2, 2), (1, None, 2), (0, 1, 1), (2, 10, 1)], + [(None, None, 6), (None, 2, 6), (1, None, 5), (0, 1, 6), (2, 10, 4)], ) def test_list_similar_jobs(client, eleven_jobs_stored, offset, count, expected_num): """ @@ -244,8 +257,12 @@ def test_list_similar_jobs(client, eleven_jobs_stored, offset, count, expected_n """ job = Job.objects.get(id=1) - url = reverse("jobs-similar-jobs", kwargs={"project": job.repository.name, "pk": job.id}) - params = "&".join([f"{k}={v}" for k, v in [("offset", offset), ("count", count)] if v]) + url = reverse( + "jobs-similar-jobs", kwargs={"project": job.repository.name, "pk": job.id} + ) + params = "&".join( + [f"{k}={v}" for k, v in [("offset", offset), ("count", 100)] if v] + ) if params: url += f"?{params}" resp = client.get(url) @@ -253,6 +270,8 @@ def test_list_similar_jobs(client, eleven_jobs_stored, offset, count, expected_n assert resp.status_code == 200 similar_jobs = resp.json() + print(f"JMAHER: url: {url}") + print(f"JMAHER: similar_jobs: {similar_jobs}") assert "results" in similar_jobs @@ -264,14 +283,20 @@ def test_list_similar_jobs(client, eleven_jobs_stored, offset, count, expected_n @pytest.mark.parametrize( "lm_key,lm_value,exp_status, exp_job_count", [ - ("last_modified__gt", "2016-07-18T22:16:58.000", 200, 8), + ("last_modified__gt", "2016-07-18T22:16:58.000", 200, 10), ("last_modified__lt", "2016-07-18T22:16:58.000", 200, 3), ("last_modified__gt", "-Infinity", HTTP_400_BAD_REQUEST, 0), ("last_modified__gt", "whatever", HTTP_400_BAD_REQUEST, 0), ], ) def test_last_modified( - client, eleven_jobs_stored, test_repository, lm_key, lm_value, exp_status, exp_job_count + client, + eleven_jobs_stored, + test_repository, + lm_key, + lm_value, + exp_status, + exp_job_count, ): try: param_date = parser.parse(lm_value) diff --git a/tests/webapp/api/test_note_api.py b/tests/webapp/api/test_note_api.py index 3c737e18a41..e3a23c1ff6c 100644 --- a/tests/webapp/api/test_note_api.py +++ b/tests/webapp/api/test_note_api.py @@ -156,28 +156,28 @@ def test_push_notes(client, test_job_with_notes): assert isinstance(resp.json(), list) assert resp.json() == [ { + "failure_classification_name": "fixed by commit", "id": 1, "job": { - "task_id": notes[0].job.taskcluster_metadata.task_id, - "job_type_name": "Linux x64 Tsan Build", + "duration": 28, + "job_type_name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "result": "success", - "duration": 191, + "task_id": notes[1].job.taskcluster_metadata.task_id, }, - "failure_classification_name": "fixed by commit", - "who": notes[0].user.email, + "who": notes[1].user.email, "created": notes[0].created.isoformat(), "text": "you look like a man-o-lantern", }, { - "failure_classification_name": "expected fail", "id": 2, "job": { - "duration": 191, - "job_type_name": "Linux x64 Tsan Build", + "task_id": notes[0].job.taskcluster_metadata.task_id, + "job_type_name": "test-macosx1015-64-qr/debug-mochitest-browser-chrome-spi-nw-10", "result": "success", - "task_id": notes[1].job.taskcluster_metadata.task_id, + "duration": 28, }, - "who": notes[1].user.email, + "failure_classification_name": "expected fail", + "who": notes[0].user.email, "created": notes[1].created.isoformat(), "text": "you look like a man-o-lantern", }, diff --git a/tests/webapp/api/test_perfcompare_api.py b/tests/webapp/api/test_perfcompare_api.py index 207f808f0bd..fdc94ed5217 100644 --- a/tests/webapp/api/test_perfcompare_api.py +++ b/tests/webapp/api/test_perfcompare_api.py @@ -120,8 +120,8 @@ def test_perfcompare_results_against_no_base( "is_complete": response["is_complete"], "base_measurement_unit": base_sig.measurement_unit, "new_measurement_unit": new_sig.measurement_unit, - "base_retriggerable_job_ids": [1], - "new_retriggerable_job_ids": [4], + "base_retriggerable_job_ids": [10], + "new_retriggerable_job_ids": [9], "base_runs": base_perf_data_values, "new_runs": new_perf_data_values, "base_runs_replicates": [], @@ -133,15 +133,15 @@ def test_perfcompare_results_against_no_base( "test": base_sig.test, "option_name": response["option_name"], "extra_options": base_sig.extra_options, - "base_stddev": round(response["base_stddev"], 2), - "new_stddev": round(response["new_stddev"], 2), - "base_stddev_pct": round(response["base_stddev_pct"], 2), - "new_stddev_pct": round(response["new_stddev_pct"], 2), + "base_stddev": round(response["base_stddev"], 1), + "new_stddev": round(response["new_stddev"], 1), + "base_stddev_pct": round(response["base_stddev_pct"], 1), + "new_stddev_pct": round(response["new_stddev_pct"], 1), "confidence": round(response["confidence"], 2), "confidence_text": response["confidence_text"], "delta_value": round(response["delta_value"], 2), "delta_percentage": round(response["delta_pct"], 2), - "magnitude": round(response["magnitude"], 2), + "magnitude": round(response["magnitude"], 1), "new_is_better": response["new_is_better"], "lower_is_better": response["lower_is_better"], "is_confident": response["is_confident"], @@ -289,8 +289,8 @@ def test_perfcompare_results_with_only_one_run_and_diff_repo( "is_complete": response["is_complete"], "base_measurement_unit": base_sig.measurement_unit, "new_measurement_unit": new_sig.measurement_unit, - "base_retriggerable_job_ids": [1], - "new_retriggerable_job_ids": [4], + "base_retriggerable_job_ids": [10], + "new_retriggerable_job_ids": [9], "base_runs": base_perf_data_values, "new_runs": new_perf_data_values, "base_runs_replicates": [], @@ -302,15 +302,15 @@ def test_perfcompare_results_with_only_one_run_and_diff_repo( "test": base_sig.test, "option_name": response["option_name"], "extra_options": base_sig.extra_options, - "base_stddev": round(response["base_stddev"], 2), - "new_stddev": round(response["new_stddev"], 2), - "base_stddev_pct": round(response["base_stddev_pct"], 2), - "new_stddev_pct": round(response["new_stddev_pct"], 2), + "base_stddev": round(response["base_stddev"], 1), + "new_stddev": round(response["new_stddev"], 1), + "base_stddev_pct": round(response["base_stddev_pct"], 1), + "new_stddev_pct": round(response["new_stddev_pct"], 1), "confidence": round(response["confidence"], 2), "confidence_text": response["confidence_text"], "delta_value": round(response["delta_value"], 2), "delta_percentage": round(response["delta_pct"], 2), - "magnitude": round(response["magnitude"], 2), + "magnitude": round(response["magnitude"], 1), "new_is_better": response["new_is_better"], "lower_is_better": response["lower_is_better"], "is_confident": response["is_confident"], @@ -601,8 +601,8 @@ def test_perfcompare_results_subtests_support( "is_complete": response["is_complete"], "base_measurement_unit": base_sig.measurement_unit, "new_measurement_unit": new_sig.measurement_unit, - "base_retriggerable_job_ids": [1], - "new_retriggerable_job_ids": [4], + "base_retriggerable_job_ids": [10], + "new_retriggerable_job_ids": [9], "base_runs": base_perf_data_values, "new_runs": new_perf_data_values, "base_runs_replicates": [], @@ -614,15 +614,15 @@ def test_perfcompare_results_subtests_support( "test": base_sig.test, "option_name": response["option_name"], "extra_options": base_sig.extra_options, - "base_stddev": round(response["base_stddev"], 2), - "new_stddev": round(response["new_stddev"], 2), - "base_stddev_pct": round(response["base_stddev_pct"], 2), - "new_stddev_pct": round(response["new_stddev_pct"], 2), + "base_stddev": round(response["base_stddev"], 1), + "new_stddev": round(response["new_stddev"], 1), + "base_stddev_pct": round(response["base_stddev_pct"], 1), + "new_stddev_pct": round(response["new_stddev_pct"], 1), "confidence": round(response["confidence"], 2), "confidence_text": response["confidence_text"], "delta_value": round(response["delta_value"], 2), "delta_percentage": round(response["delta_pct"], 2), - "magnitude": round(response["magnitude"], 2), + "magnitude": round(response["magnitude"], 1), "new_is_better": response["new_is_better"], "lower_is_better": response["lower_is_better"], "is_confident": response["is_confident"], diff --git a/tests/webapp/api/test_performance_data_api.py b/tests/webapp/api/test_performance_data_api.py index a5483ee458b..b8398ffb7f5 100644 --- a/tests/webapp/api/test_performance_data_api.py +++ b/tests/webapp/api/test_performance_data_api.py @@ -479,7 +479,7 @@ def test_filter_data_by_signature( def test_perf_summary(client, test_perf_signature, test_perf_data): query_params1 = f"?repository={test_perf_signature.repository.name}&framework={test_perf_signature.framework_id}&interval=172800&no_subtests=true&revision={test_perf_data[0].push.revision}" - query_params2 = f"?repository={test_perf_signature.repository.name}&framework={test_perf_signature.framework_id}&interval=172800&no_subtests=true&startday=2013-11-01T23%3A28%3A29&endday=2013-11-30T23%3A28%3A29" + query_params2 = f"?repository={test_perf_signature.repository.name}&framework={test_perf_signature.framework_id}&interval=172800&no_subtests=true&startday=2025-02-01T23%3A28%3A29&endday=2025-02-28T23%3A28%3A29" expected = [ { @@ -705,10 +705,11 @@ def test_alert_summary_tasks_get(client, test_perf_alert_summary, test_perf_data assert resp.json() == { "id": test_perf_alert_summary.id, "tasks": [ - "Inari Device Image Build", - "Linux x64 Tsan Build", - "Mochitest Browser Chrome", - "Nexus 4 Device Image Build", + 'test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-10', + 'test-linux1804-64-qr/debug-mochitest-browser-chrome-spi-nw-11', + 'test-linux1804-64-qr/debug-mochitest-devtools-chrome-9', + 'test-linux1804-64-qr/debug-xpcshell-3', + ], } diff --git a/tests/webapp/api/test_push_api.py b/tests/webapp/api/test_push_api.py index 5b82f0b8b76..46d4d5e6e6a 100644 --- a/tests/webapp/api/test_push_api.py +++ b/tests/webapp/api/test_push_api.py @@ -72,17 +72,17 @@ def test_push_list_single_short_revision(client, eleven_jobs_stored, test_reposi """ resp = client.get( - reverse("push-list", kwargs={"project": test_repository.name}), {"revision": "45f8637cb9f7"} + reverse("push-list", kwargs={"project": test_repository.name}), {"revision": "b2a46b1f3c48"} ) assert resp.status_code == 200 results = resp.json()["results"] meta = resp.json()["meta"] assert len(results) == 1 - assert set([rs["revision"] for rs in results]) == {"45f8637cb9f78f19cb8463ff174e81756805d8cf"} + assert set([rs["revision"] for rs in results]) == {"b2a46b1f3c48376d1093a5e9c45751465013aadb"} assert meta == { "count": 1, - "revision": "45f8637cb9f7", - "filter_params": {"revisions_short_revision": "45f8637cb9f7"}, + "revision": "b2a46b1f3c48", + "filter_params": {"revisions_short_revision": "b2a46b1f3c48"}, "repository": test_repository.name, } @@ -94,17 +94,17 @@ def test_push_list_single_long_revision(client, eleven_jobs_stored, test_reposit resp = client.get( reverse("push-list", kwargs={"project": test_repository.name}), - {"revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"}, + {"revision": "b2a46b1f3c48376d1093a5e9c45751465013aadb"}, ) assert resp.status_code == 200 results = resp.json()["results"] meta = resp.json()["meta"] assert len(results) == 1 - assert set([rs["revision"] for rs in results]) == {"45f8637cb9f78f19cb8463ff174e81756805d8cf"} + assert set([rs["revision"] for rs in results]) == {"b2a46b1f3c48376d1093a5e9c45751465013aadb"} assert meta == { "count": 1, - "revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf", - "filter_params": {"revisions_long_revision": "45f8637cb9f78f19cb8463ff174e81756805d8cf"}, + "revision": "b2a46b1f3c48376d1093a5e9c45751465013aadb", + "filter_params": {"revisions_long_revision": "b2a46b1f3c48376d1093a5e9c45751465013aadb"}, "repository": test_repository.name, } @@ -117,25 +117,27 @@ def test_push_list_filter_by_revision(client, eleven_jobs_stored, test_repositor resp = client.get( reverse("push-list", kwargs={"project": test_repository.name}), - {"fromchange": "130965d3df6c", "tochange": "f361dcb60bbe"}, + {"fromchange": "b2a46b1f3c48376d1093a5e9c45751465013aadb", "tochange": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3"}, ) assert resp.status_code == 200 data = resp.json() results = data["results"] meta = data["meta"] - assert len(results) == 4 + assert len(results) == 6 assert set([rs["revision"] for rs in results]) == { - "130965d3df6c9a1093b4725f3b877eaef80d72bc", - "7f417c3505e3d2599ac9540f02e3dbee307a3963", - "a69390334818373e2d7e6e9c8d626a328ed37d47", - "f361dcb60bbedaa01257fbca211452972f7a74b2", + "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", + "9fc3318eca2cb058653f6c1cdc49aa5f702a125d", + "5b7262c5abe195bde3a2781d67b06ae46d6be775", + "9994bf4500967f92c9a0576bf142978c7bd88f4b", + "d4b495f59add6b075aa7f16de01d009f28090d5d", + "b2a46b1f3c48376d1093a5e9c45751465013aadb" } assert meta == { - "count": 4, - "fromchange": "130965d3df6c", - "filter_params": {"push_timestamp__gte": 1384363842, "push_timestamp__lte": 1384365942}, + "count": 6, + "fromchange": "b2a46b1f3c48376d1093a5e9c45751465013aadb", + "filter_params": {"push_timestamp__gte": 1740660946, "push_timestamp__lte": 1740667261}, "repository": test_repository.name, - "tochange": "f361dcb60bbe", + "tochange": "9c6e4c31ad26efdad0b9af47a2b530bc414ce2c3", } @@ -145,7 +147,7 @@ def test_push_list_filter_by_date(client, test_repository, sample_push): test retrieving a push list, filtered by a date range """ for i, datestr in zip( - [3, 4, 5, 6, 7], ["2013-08-09", "2013-08-10", "2013-08-11", "2013-08-12", "2013-08-13"] + [2, 3, 4, 5], ["2025-02-16", "2025-02-17", "2025-02-18", "2025-02-19"] ): sample_push[i]["push_timestamp"] = utils.to_timestamp(utils.to_datetime(datestr)) @@ -153,28 +155,27 @@ def test_push_list_filter_by_date(client, test_repository, sample_push): resp = client.get( reverse("push-list", kwargs={"project": test_repository.name}), - {"startdate": "2013-08-10", "enddate": "2013-08-13"}, + {"startdate": "2025-02-17", "enddate": "2025-02-20"}, ) assert resp.status_code == 200 data = resp.json() results = data["results"] meta = data["meta"] - assert len(results) == 4 + assert len(results) == 3 assert set([rs["revision"] for rs in results]) == { - "ce17cad5d554cfffddee13d1d8421ae9ec5aad82", - "7f417c3505e3d2599ac9540f02e3dbee307a3963", - "a69390334818373e2d7e6e9c8d626a328ed37d47", - "f361dcb60bbedaa01257fbca211452972f7a74b2", + "b2a46b1f3c48376d1093a5e9c45751465013aadb", + "d4b495f59add6b075aa7f16de01d009f28090d5d", + "9994bf4500967f92c9a0576bf142978c7bd88f4b" } assert meta == { - "count": 4, - "enddate": "2013-08-13", + "count": 3, + "enddate": "2025-02-20", "filter_params": { - "push_timestamp__gte": 1376092800.0, - "push_timestamp__lt": 1376438400.0, + "push_timestamp__gte": 1739750400, + "push_timestamp__lt": 1740096000, }, "repository": test_repository.name, - "startdate": "2013-08-10", + "startdate": "2025-02-17", } diff --git a/treeherder/etl/job_loader.py b/treeherder/etl/job_loader.py index b45f1e2a058..37a9a474e78 100644 --- a/treeherder/etl/job_loader.py +++ b/treeherder/etl/job_loader.py @@ -38,6 +38,7 @@ class JobLoader: "success": "success", "fail": "testfailed", "exception": "exception", + "retry": "retry", "canceled": "usercancel", "superseded": "superseded", "unknown": "unknown", @@ -46,6 +47,7 @@ class JobLoader: "success": "success", "fail": "busted", "exception": "exception", + "retry": "retry", "canceled": "usercancel", "superseded": "superseded", "unknown": "unknown",