Closed Bug 1922838 Opened 9 months ago Closed 9 months ago

Use std::size instead of mozilla::ArrayLength

Categories

(Core :: MFBT, task)

task

Tracking

()

RESOLVED FIXED
134 Branch
Tracking Status
firefox134 --- fixed

People

(Reporter: sergesanspaille, Assigned: sergesanspaille)

References

(Blocks 1 open bug)

Details

Attachments

(1 file)

No description provided.

Namely std::size, std::end and std::size. This drops C support for
MOZ_ARRAY_LENGTH but it wasn't used anyway.

Attachment #9429086 - Attachment description: Bug 1922838 - Replace ArrayLength, ArrayEnd and MOZ_ARRAY_LENGTH by standard alternative r=glandium → Bug 1922838 - Replace ArrayLength, ArrayEnd and MOZ_ARRAY_LENGTH by standard alternative r=glandium!
Pushed by sguelton@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/448597bce69d Replace ArrayLength, ArrayEnd and MOZ_ARRAY_LENGTH by standard alternative r=glandium,necko-reviewers,jgilbert,application-update-reviewers,media-playback-reviewers,credential-management-reviewers,anti-tracking-reviewers,places-reviewers,profiler-reviewers,win-reviewers,dom-storage-reviewers,bytesized,janv,dimi,daisuke,karlt,gstoll,canaltinova,timhuang

Backed out for causing build bustages.

[task 2024-10-24T08:25:54.657Z] 08:25:54     INFO -  In file included from Unified_cpp_toolkit_xre0.cpp:47:
[task 2024-10-24T08:25:54.657Z] 08:25:54    ERROR -  /builds/worker/checkouts/gecko/toolkit/xre/GeckoArgs.cpp:59:44: error: use of undeclared identifier 'ArrayLength'
[task 2024-10-24T08:25:54.657Z] 08:25:54     INFO -     59 |   MOZ_RELEASE_ASSERT(aSendRights.size() <= ArrayLength(gMachSendRights));
[task 2024-10-24T08:25:54.658Z] 08:25:54     INFO -        |                                            ^
[task 2024-10-24T08:25:54.658Z] 08:25:54    ERROR -  /builds/worker/checkouts/gecko/toolkit/xre/GeckoArgs.cpp:59:44: error: use of undeclared identifier 'ArrayLength'
[task 2024-10-24T08:25:54.658Z] 08:25:54    ERROR -  /builds/worker/checkouts/gecko/toolkit/xre/GeckoArgs.cpp:114:31: error: use of undeclared identifier 'ArrayLength'
[task 2024-10-24T08:25:54.658Z] 08:25:54     INFO -    114 |     MOZ_RELEASE_ASSERT(*arg < ArrayLength(gMachSendRights));
[task 2024-10-24T08:25:54.659Z] 08:25:54     INFO -        |                               ^
[task 2024-10-24T08:25:54.659Z] 08:25:54    ERROR -  /builds/worker/checkouts/gecko/toolkit/xre/GeckoArgs.cpp:114:31: error: use of undeclared identifier 'ArrayLength'
[task 2024-10-24T08:25:54.659Z] 08:25:54     INFO -  In file included from Unified_cpp_toolkit_xre0.cpp:110:
[task 2024-10-24T08:25:54.659Z] 08:25:54  WARNING -  /builds/worker/checkouts/gecko/toolkit/xre/nsXREDirProvider.cpp:284:25: warning: 'kOnSystemDisk' is deprecated: first deprecated in macOS 10.8 - Deprecated [-Wdeprecated-declarations]
[task 2024-10-24T08:25:54.660Z] 08:25:54     INFO -    284 |   rv = GetOSXFolderType(kOnSystemDisk, kApplicationSupportFolderType,
[task 2024-10-24T08:25:54.660Z] 08:25:54     INFO -        |                         ^
[task 2024-10-24T08:25:54.660Z] 08:25:54     INFO -  /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:63:1: note: '(unnamed enum at /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:63:1)' has been explicitly marked deprecated here
[task 2024-10-24T08:25:54.661Z] 08:25:54     INFO -     63 | enum {
[task 2024-10-24T08:25:54.661Z] 08:25:54     INFO -        | ^
[task 2024-10-24T08:25:54.661Z] 08:25:54     INFO -  In file included from Unified_cpp_toolkit_xre0.cpp:110:
[task 2024-10-24T08:25:54.661Z] 08:25:54  WARNING -  /builds/worker/checkouts/gecko/toolkit/xre/nsXREDirProvider.cpp:284:40: warning: 'kApplicationSupportFolderType' is deprecated: first deprecated in macOS 10.8 - Deprecated [-Wdeprecated-declarations]
[task 2024-10-24T08:25:54.662Z] 08:25:54     INFO -    284 |   rv = GetOSXFolderType(kOnSystemDisk, kApplicationSupportFolderType,
[task 2024-10-24T08:25:54.662Z] 08:25:54     INFO -        |                                        ^
[task 2024-10-24T08:25:54.662Z] 08:25:54     INFO -  /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:429:1: note: '(unnamed enum at /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:429:1)' has been explicitly marked deprecated here
[task 2024-10-24T08:25:54.662Z] 08:25:54     INFO -    429 | enum {
[task 2024-10-24T08:25:54.663Z] 08:25:54     INFO -        | ^
[task 2024-10-24T08:25:54.663Z] 08:25:54     INFO -  In file included from Unified_cpp_toolkit_xre0.cpp:110:
[task 2024-10-24T08:25:54.663Z] 08:25:54  WARNING -  /builds/worker/checkouts/gecko/toolkit/xre/nsXREDirProvider.cpp:1045:18: warning: 'kCachedDataFolderType' is deprecated: first deprecated in macOS 10.8 - Deprecated [-Wdeprecated-declarations]
[task 2024-10-24T08:25:54.663Z] 08:25:54     INFO -   1045 |     folderType = kCachedDataFolderType;
[task 2024-10-24T08:25:54.664Z] 08:25:54     INFO -        |                  ^
[task 2024-10-24T08:25:54.665Z] 08:25:54     INFO -  /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:371:1: note: '(unnamed enum at /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:371:1)' has been explicitly marked deprecated here
[task 2024-10-24T08:25:54.665Z] 08:25:54     INFO -    371 | enum {
[task 2024-10-24T08:25:54.665Z] 08:25:54     INFO -        | ^
[task 2024-10-24T08:25:54.665Z] 08:25:54     INFO -  In file included from Unified_cpp_toolkit_xre0.cpp:110:
[task 2024-10-24T08:25:54.665Z] 08:25:54  WARNING -  /builds/worker/checkouts/gecko/toolkit/xre/nsXREDirProvider.cpp:1050:18: warning: 'kApplicationSupportFolderType' is deprecated: first deprecated in macOS 10.8 - Deprecated [-Wdeprecated-declarations]
[task 2024-10-24T08:25:54.666Z] 08:25:54     INFO -   1050 |     folderType = kApplicationSupportFolderType;
[task 2024-10-24T08:25:54.666Z] 08:25:54     INFO -        |                  ^
[task 2024-10-24T08:25:54.666Z] 08:25:54     INFO -  /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:429:1: note: '(unnamed enum at /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:429:1)' has been explicitly marked deprecated here
[task 2024-10-24T08:25:54.666Z] 08:25:54     INFO -    429 | enum {
[task 2024-10-24T08:25:54.666Z] 08:25:54     INFO -        | ^
[task 2024-10-24T08:25:54.667Z] 08:25:54     INFO -  In file included from Unified_cpp_toolkit_xre0.cpp:110:
[task 2024-10-24T08:25:54.667Z] 08:25:54  WARNING -  /builds/worker/checkouts/gecko/toolkit/xre/nsXREDirProvider.cpp:1053:17: warning: 'FSFindFolder' is deprecated: first deprecated in macOS 10.8 [-Wdeprecated-declarations]
[task 2024-10-24T08:25:54.667Z] 08:25:54     INFO -   1053 |   OSErr err = ::FSFindFolder(kUserDomain, folderType, kCreateFolder, &fsRef);
[task 2024-10-24T08:25:54.667Z] 08:25:54     INFO -        |                 ^
[task 2024-10-24T08:25:54.667Z] 08:25:54     INFO -  /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:289:1: note: 'FSFindFolder' has been explicitly marked deprecated here
[task 2024-10-24T08:25:54.668Z] 08:25:54     INFO -    289 | FSFindFolder(
[task 2024-10-24T08:25:54.668Z] 08:25:54     INFO -        | ^
[task 2024-10-24T08:25:54.668Z] 08:25:54     INFO -  In file included from Unified_cpp_toolkit_xre0.cpp:110:
[task 2024-10-24T08:25:54.668Z] 08:25:54  WARNING -  /builds/worker/checkouts/gecko/toolkit/xre/nsXREDirProvider.cpp:1053:30: warning: 'kUserDomain' is deprecated: first deprecated in macOS 10.8 - Deprecated [-Wdeprecated-declarations]
[task 2024-10-24T08:25:54.669Z] 08:25:54     INFO -   1053 |   OSErr err = ::FSFindFolder(kUserDomain, folderType, kCreateFolder, &fsRef);
[task 2024-10-24T08:25:54.669Z] 08:25:54     INFO -        |                              ^
[task 2024-10-24T08:25:54.670Z] 08:25:54     INFO -  /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:63:1: note: '(unnamed enum at /builds/worker/fetches/MacOSX14.4.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/CarbonCore.framework/Headers/Folders.h:63:1)' has been explicitly marked deprecated here
[task 2024-10-24T08:25:54.670Z] 08:25:54     INFO -     63 | enum {
[task 2024-10-24T08:25:54.671Z] 08:25:54     INFO -        | ^
[task 2024-10-24T08:25:54.672Z] 08:25:54     INFO -  In file included from Unified_cpp_toolkit_xre0.cpp:110:
[task 2024-10-24T08:25:54.673Z] 08:25:54  WARNING -  /builds/worker/checkouts/gecko/toolkit/xre/nsXREDirProvider.cpp:1053:55: warning: 'kCreateFolder' is deprecated: first deprecated in macOS 10.8 - Deprecated [-Wdeprecated-declarations]
[task 2024-10-24T08:25:54.673Z] 08:25:54     INFO -   1053 |   OSErr err = ::FSFindFolder(kUserDomain, folderType, kCreateFolder, &fsRef);
[task 2024-10-24T08:25:54.678Z] 08:25:54     INFO -        |  
<...>
[task 2024-10-24T08:33:32.328Z] 08:33:32     INFO -      Finished `dev` profile [optimized + debuginfo] target(s) in 23.74s
[task 2024-10-24T08:33:32.328Z] 08:33:32     INFO -  gmake[4]: Leaving directory '/builds/worker/workspace/obj-build/toolkit/library/gtest/rust'
[task 2024-10-24T08:33:32.328Z] 08:33:32     INFO -  gmake[4]: Entering directory '/builds/worker/workspace/obj-build/toolkit/library/gtest/rust'
[task 2024-10-24T08:33:32.328Z] 08:33:32     INFO -  gmake[4]: Leaving directory '/builds/worker/workspace/obj-build/toolkit/library/gtest/rust'
[task 2024-10-24T08:33:32.328Z] 08:33:32     INFO -  gmake[4]: Entering directory '/builds/worker/workspace/obj-build/toolkit/library/gtest/rust'
[task 2024-10-24T08:33:32.328Z] 08:33:32     INFO -  toolkit/library/gtest/rust/libgkrust_gtest.a
[task 2024-10-24T08:33:32.328Z] 08:33:32     INFO -  :
[task 2024-10-24T08:33:32.329Z] 08:33:32     INFO -  gmake[4]: Leaving directory '/builds/worker/workspace/obj-build/toolkit/library/gtest/rust'
[task 2024-10-24T08:33:32.329Z] 08:33:32     INFO -  gmake[3]: Target 'recurse_compile' not remade because of errors.
[task 2024-10-24T08:33:32.329Z] 08:33:32    ERROR -  gmake[2]: *** [/builds/worker/checkouts/gecko/config/recurse.mk:34: compile] Error 2
[task 2024-10-24T08:33:32.329Z] 08:33:32    ERROR -  gmake[1]: *** [/builds/worker/checkouts/gecko/config/rules.mk:359: default] Error 2
[task 2024-10-24T08:33:32.329Z] 08:33:32     INFO -  gmake[1]: Entering directory '/builds/worker/workspace/obj-build'
[task 2024-10-24T08:33:32.329Z] 08:33:32     INFO -  /builds/worker/fetches/sccache/sccache --show-adv-stats --stats-format=json > '/builds/worker/artifacts/sccache-stats.json'
[task 2024-10-24T08:33:32.329Z] 08:33:32     INFO -  gmake[1]: Leaving directory '/builds/worker/workspace/obj-build'
[task 2024-10-24T08:33:32.330Z] 08:33:32     INFO -  gmake[1]: Entering directory '/builds/worker/workspace/obj-build'
[task 2024-10-24T08:33:32.330Z] 08:33:32     INFO -  ===SCCACHE STATS===
[task 2024-10-24T08:33:32.330Z] 08:33:32     INFO -  gmake[1]: Leaving directory '/builds/worker/workspace/obj-build'
[task 2024-10-24T08:33:32.330Z] 08:33:32     INFO -  gmake[1]: Entering directory '/builds/worker/workspace/obj-build'
[task 2024-10-24T08:33:32.330Z] 08:33:32     INFO -  /builds/worker/fetches/sccache/sccache --show-adv-stats
[task 2024-10-24T08:33:32.330Z] 08:33:32     INFO -  Compile requests                    5526
[task 2024-10-24T08:33:32.330Z] 08:33:32     INFO -  Compile requests executed           4868
[task 2024-10-24T08:33:32.331Z] 08:33:32     INFO -  Cache hits                          3681
[task 2024-10-24T08:33:32.331Z] 08:33:32     INFO -  Cache hits (c [clang])              1479
[task 2024-10-24T08:33:32.331Z] 08:33:32     INFO -  Cache hits (c++ [clang])            1599
[task 2024-10-24T08:33:32.331Z] 08:33:32     INFO -  Cache hits (objc [clang])              5
[task 2024-10-24T08:33:32.331Z] 08:33:32     INFO -  Cache hits (objc++ [clang])           36
[task 2024-10-24T08:33:32.331Z] 08:33:32     INFO -  Cache hits (rust)                    562
[task 2024-10-24T08:33:32.331Z] 08:33:32     INFO -  Cache misses                        1178
[task 2024-10-24T08:33:32.331Z] 08:33:32     INFO -  Cache misses (c++ [clang])          1074
[task 2024-10-24T08:33:32.331Z] 08:33:32     INFO -  Cache misses (objc++ [clang])         46
[task 2024-10-24T08:33:32.332Z] 08:33:32     INFO -  Cache misses (rust)                   58
[task 2024-10-24T08:33:32.332Z] 08:33:32     INFO -  Cache timeouts                         0
[task 2024-10-24T08:33:32.332Z] 08:33:32     INFO -  Cache read errors                      0
[task 2024-10-24T08:33:32.332Z] 08:33:32     INFO -  Forced recaches                        0
[task 2024-10-24T08:33:32.332Z] 08:33:32     INFO -  Cache write errors                     0
[task 2024-10-24T08:33:32.332Z] 08:33:32     INFO -  Compilation failures                   7
[task 2024-10-24T08:33:32.332Z] 08:33:32     INFO -  Cache errors                           2
[task 2024-10-24T08:33:32.332Z] 08:33:32     INFO -  Cache errors (rust)                    2
[task 2024-10-24T08:33:32.332Z] 08:33:32     INFO -  Non-cacheable compilations             0
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  Non-cacheable calls                  423
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  Non-compilation calls                235
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  Unsupported compiler calls             0
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  Average cache write                0.086 s
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  Average compiler                  24.871 s
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  Average cache read hit             0.077 s
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  Failed distributed compilations        0
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  Non-cacheable reasons:
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  -P                                   164
[task 2024-10-24T08:33:32.333Z] 08:33:32     INFO -  crate-type                           131
[task 2024-10-24T08:33:32.334Z] 08:33:32     INFO -  unknown source language               48
[task 2024-10-24T08:33:32.334Z] 08:33:32     INFO -  -fsyntax-only                         45
[task 2024-10-24T08:33:32.334Z] 08:33:32     INFO -  @                                     27
[task 2024-10-24T08:33:32.334Z] 08:33:32     INFO -  -                                      5
[task 2024-10-24T08:33:32.334Z] 08:33:32     INFO -  missing input                          2
[task 2024-10-24T08:33:32.334Z] 08:33:32     INFO -  -E                                     1
[task 2024-10-24T08:33:32.334Z] 08:33:32     INFO -  Cache location                  gcs, name: sccache-l3-us-central1, prefix: /
[task 2024-10-24T08:33:32.334Z] 08:33:32     INFO -  Version (client)                0.8.1
[task 2024-10-24T08:33:32.335Z] 08:33:32     INFO -  gmake[1]: Leaving directory '/builds/worker/workspace/obj-build'
[task 2024-10-24T08:33:32.335Z] 08:33:32     INFO -  gmake[1]: Entering directory '/builds/worker/workspace/obj-build'
[task 2024-10-24T08:33:32.335Z] 08:33:32     INFO -  ===================
[task 2024-10-24T08:33:32.335Z] 08:33:32     INFO -  gmake[1]: Leaving directory '/builds/worker/workspace/obj-build'
[task 2024-10-24T08:33:32.335Z] 08:33:32     INFO -  Stopping sccache server...
[task 2024-10-24T08:33:32.335Z] 08:33:32     INFO -  Compile requests                    5526
[task 2024-10-24T08:33:32.335Z] 08:33:32     INFO -  Compile requests executed           4868
[task 2024-10-24T08:33:32.335Z] 08:33:32     INFO -  Cache hits                          3681
[task 2024-10-24T08:33:32.336Z] 08:33:32     INFO -  Cache hits (C/C++)                  3119
[task 2024-10-24T08:33:32.336Z] 08:33:32     INFO -  Cache hits (Rust)                    562
[task 2024-10-24T08:33:32.336Z] 08:33:32     INFO -  Cache misses                        1178
[task 2024-10-24T08:33:32.336Z] 08:33:32     INFO -  Cache misses (C/C++)                1120
[task 2024-10-24T08:33:32.336Z] 08:33:32     INFO -  Cache misses (Rust)                   58
[task 2024-10-24T08:33:32.336Z] 08:33:32     INFO -  Cache timeouts                         0
[task 2024-10-24T08:33:32.336Z] 08:33:32     INFO -  Cache read errors                      0
[task 2024-10-24T08:33:32.336Z] 08:33:32     INFO -  Forced recaches                        0
[task 2024-10-24T08:33:32.336Z] 08:33:32     INFO -  Cache write errors                     0
[task 2024-10-24T08:33:32.337Z] 08:33:32     INFO -  Compilation failures                   7
[task 2024-10-24T08:33:32.337Z] 08:33:32     INFO -  Cache errors                           2
[task 2024-10-24T08:33:32.337Z] 08:33:32     INFO -  Cache errors (Rust)                    2
[task 2024-10-24T08:33:32.337Z] 08:33:32     INFO -  Non-cacheable compilations             0
[task 2024-10-24T08:33:32.337Z] 08:33:32     INFO -  Non-cacheable calls                  423
[task 2024-10-24T08:33:32.337Z] 08:33:32     INFO -  Non-compilation calls                235
[task 2024-10-24T08:33:32.337Z] 08:33:32     INFO -  Unsupported compiler calls             0
[task 2024-10-24T08:33:32.337Z] 08:33:32     INFO -  Average cache write                0.086 s
[task 2024-10-24T08:33:32.338Z] 08:33:32     INFO -  Average compiler                  24.871 s
[task 2024-10-24T08:33:32.338Z] 08:33:32     INFO -  Average cache read hit             0.077 s
[task 2024-10-24T08:33:32.338Z] 08:33:32     INFO -  Failed distributed compilations        0
[task 2024-10-24T08:33:32.338Z] 08:33:32     INFO -  Non-cacheable reasons:
[task 2024-10-24T08:33:32.338Z] 08:33:32     INFO -  -P                                   164
[task 2024-10-24T08:33:32.338Z] 08:33:32     INFO -  crate-type                           131
[task 2024-10-24T08:33:32.338Z] 08:33:32     INFO -  unknown source language               48
[task 2024-10-24T08:33:32.338Z] 08:33:32     INFO -  -fsyntax-only                         45
[task 2024-10-24T08:33:32.338Z] 08:33:32     INFO -  @                                     27
[task 2024-10-24T08:33:32.339Z] 08:33:32     INFO -  -                                      5
[task 2024-10-24T08:33:32.339Z] 08:33:32     INFO -  missing input                          2
[task 2024-10-24T08:33:32.339Z] 08:33:32     INFO -  -E                                     1
[task 2024-10-24T08:33:32.339Z] 08:33:32     INFO -  Cache location                  gcs, name: sccache-l3-us-central1, prefix: /
[task 2024-10-24T08:33:32.339Z] 08:33:32     INFO -  Version (client)                0.8.1
[task 2024-10-24T08:33:32.339Z] 08:33:32     INFO -  gmake: *** [client.mk:59: build] Error 2
[task 2024-10-24T08:33:32.498Z] 08:33:32     INFO -  998 compiler warnings present.
[task 2024-10-24T08:33:36.078Z] 08:33:36     INFO - Return code: 2
[task 2024-10-24T08:33:36.078Z] 08:33:36  WARNING - setting return code to 2
[task 2024-10-24T08:33:36.078Z] 08:33:36    FATAL - 'mach build -v' did not run successfully. Please check log for errors.
[task 2024-10-24T08:33:36.078Z] 08:33:36    FATAL - Running post_fatal callback...
[task 2024-10-24T08:33:36.078Z] 08:33:36    FATAL - Exiting -1
[task 2024-10-24T08:33:36.078Z] 08:33:36     INFO - [mozharness: 2024-10-24 08:33:36.078306Z] Finished build step (failed)
[task 2024-10-24T08:33:36.078Z] 08:33:36     INFO - Running post-run listener: _parse_build_tests_ccov
[task 2024-10-24T08:33:36.078Z] 08:33:36     INFO - Running command: ['/builds/worker/.mozbuild/srcdirs/gecko-8a5b87fe5d69/_virtualenvs/common/bin/python', 'mach', 'python', 'testing/parse_build_tests_ccov.py'] in /builds/worker/checkouts/gecko
[task 2024-10-24T08:33:36.078Z] 08:33:36     INFO - Copy/paste: /builds/worker/.mozbuild/srcdirs/gecko-8a5b87fe5d69/_virtualenvs/common/bin/python mach python testing/parse_build_tests_ccov.py
[task 2024-10-24T08:33:36.079Z] 08:33:36     INFO - Using env: {'ACCEPTED_MAR_CHANNEL_IDS': 'firefox-mozilla-central',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'DEBIAN_FRONTEND': 'noninteractive',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'EXTRA_MOZHARNESS_CONFIG': '{"extra_mozconfig_content": ["ac_add_options '
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -                             '--target=aarch64-apple-darwin"], '
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -                             '"mozconfig_variant": "debug", "objdir": '
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -                             '"obj-build"}',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'GECKO_BASE_REPOSITORY': 'https://hg.mozilla.org/mozilla-unified',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'GECKO_HEAD_REPOSITORY': 'https://hg.mozilla.org/integration/autoland',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'GECKO_HEAD_REV': '448597bce69d9e173e0b6818a513b8dfd86f1765',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'GECKO_PATH': '/builds/worker/checkouts/gecko',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'GRCOV_PATH': '/builds/worker/fetches/grcov/grcov',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'HG_SHARE_BASE_DIR': '/builds/hg-shared',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'HG_STORE_PATH': '/builds/worker/checkouts/hg-store',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'HOME': '/builds/worker',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'HOSTNAME': 'taskcluster-worker',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'LC_ALL': 'C',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'LC_CTYPE': 'C.UTF-8',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'LOGNAME': 'worker',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MACH_BUILD_PYTHON_NATIVE_PACKAGE_SOURCE': 'system',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MACH_MAIN_PID': '58',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MACH_SYSTEM_ASSERTED_COMPATIBLE_WITH_COMMON_SITE': '1',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MACH_SYSTEM_ASSERTED_COMPATIBLE_WITH_MACH_SITE': '1',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MAR_CHANNEL_ID': 'firefox-mozilla-central',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MH_BRANCH': 'autoland',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MH_BUILD_POOL': 'taskcluster',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MH_CUSTOM_BUILD_VARIANT_CFG': 'cross-debug',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MOZBUILD_STATE_PATH': '/builds/worker/.mozbuild',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MOZHARNESS_ACTIONS': 'get-secrets build',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MOZHARNESS_CONFIG': 'builds/releng_base_firefox.py '
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -                       'builds/releng_base_mac_64_cross_builds.py',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MOZHARNESS_SCRIPT': 'mozharness/scripts/fx_desktop_build.py',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MOZPYTHONHOME': '/builds/worker/fetches/python',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MOZ_ARTIFACT_PLATFORM': 'macosx64-aarch64',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MOZ_AUTOMATION': '1',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MOZ_AUTOMATION_PACKAGE_TESTS': '1',
[task 2024-10-24T08:33:36.080Z] 08:33:36     INFO -  'MOZ_BUILD_DATE': '20241024074716',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'MOZ_CRASHREPORTER_NO_REPORT': '1',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'MOZ_FETCHES': '[{"artifact": "project/gecko/mac-sdk/MacOSX14.4.sdk.tar.zst", '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"extract": true, "task": "PtW5zunKRr6Y1YBUH2VSnQ"}, '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '{"artifact": "public/build/cbindgen.tar.zst", "extract": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 'true, "task": "N5H7TrcoRSaHytZJ9wttUQ"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/clang.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"FJDku0NgR3OXEidXEM8xVQ"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/dmg.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"VHt6af-NR9qaOwg6KdJyQg"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/dump_syms.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"RrI9x0hdRzCiTgf1brBhWg"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/hfsplus.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"alNedL8MSKuesF5CId8Y0g"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/nasm.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"FVogARC0RbqcYP1rM7NUMg"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/node.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"BUD8TJhjSsyr4c4eOCb8XQ"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/python.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"ROanV23xQ7yjfTv0jF4ezg"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/rust-size.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"RkzR-n5xR_ioDjNCmRNXbg"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/rustc.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"M3i2hGqVTQuV3bHtfR5VAw"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/sccache.tar.zst", "extract": true, "task": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"AhIcC989QOyVGQ0rz1nIWQ"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/sysroot-wasm32-wasi.tar.zst", "extract": true, '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"task": "KtdOWX7dS0iBrUwdeGbI-w"}, {"artifact": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 '"public/build/sysroot-x86_64-linux-gnu.tar.zst", "extract": '
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -                 'true, "task": "PZuvXoTXQDCZN_o5X8ivkg"}]',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'MOZ_FETCHES_DIR': '/builds/worker/fetches',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'MOZ_OBJDIR': '/builds/worker/workspace/obj-build',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'MOZ_PYTHON_HOME': '/builds/worker/fetches/python',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'MOZ_SCM_LEVEL': '3',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'MOZ_SIMPLE_PACKAGE_NAME': 'target',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'MOZ_SOURCE_CHANGESET': '448597bce69d9e173e0b6818a513b8dfd86f1765',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'MOZ_SOURCE_REPO': 'https://hg.mozilla.org/integration/autoland',
[task 2024-10-24T08:33:36.081Z] 08:33:36     INFO -  'OLDPWD': '/builds/worker',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'PATH': '/tools/python/bin:/opt/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'PERFHERDER_EXTRA_OPTIONS': 'aarch64',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'PWD': '/builds/worker',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'PYTHONDONTWRITEBYTECODE': '1',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'PYTHONUNBUFFERED': '1',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'REQUIRE_GPU': '0',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'RUN_ID': '0',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'SCCACHE_GCS_PROJECT': 'sccache-3',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'SCCACHE_IDLE_TIMEOUT': '0',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'SHELL': '/bin/bash',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'SHLVL': '1',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_INSTANCE_TYPE': 'projects/970387039909/machineTypes/c2-standard-16',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_NAME': '/epic_jackson/taskcluster',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_PORT': 'tcp://172.17.0.2:80',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_PORT_80_TCP': 'tcp://172.17.0.2:80',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_PORT_80_TCP_ADDR': '172.17.0.2',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_PORT_80_TCP_PORT': '80',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_PORT_80_TCP_PROTO': 'tcp',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_PROXY_URL': 'http://taskcluster',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_PUBLIC_IP': '34.29.73.43',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_ROOT_URL': 'https://firefox-ci-tc.services.mozilla.com',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_WORKER_GROUP': 'us-central1-a',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_WORKER_LOCATION': '{"cloud":"google","region":"us-central1","zone":"us-central1-a"}',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_WORKER_POOL': 'gecko-3/b-linux-gcp',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASKCLUSTER_WORKER_TYPE': 'b-linux-gcp',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TASK_ID': 'P6z0CDCyR1ys79i87igLyQ',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TERM': 'xterm',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TINDERBOX_OUTPUT': '1',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TOOLTOOL_CACHE': '/builds/tooltool_cache',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'TOOLTOOL_HOME': '/builds',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'UPLOAD_DIR': '/builds/worker/artifacts',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'USER': 'worker',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'USE_SCCACHE': '1',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'VIRTUAL_ENV': '/builds/worker/.mozbuild/srcdirs/gecko-8a5b87fe5d69/_virtualenvs/common',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'WORKSPACE': '/builds/worker/workspace',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'XPCOM_DEBUG_BREAK': 'stack-and-abort',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  'XZ_OPT': '-T0',
[task 2024-10-24T08:33:36.082Z] 08:33:36     INFO -  '_': '/builds/worker/checkouts/gecko/mach'}
[task 2024-10-24T08:33:37.203Z] 08:33:37     INFO - Return code: 0
[task 2024-10-24T08:33:37.203Z] 08:33:37     INFO - Running post-run listener: _relocate_artifacts
[task 2024-10-24T08:33:37.206Z] 08:33:37     INFO - The artifact /builds/worker/artifacts/target.crashreporter-symbols-full.tar.zst is not present in this build. Skipping
[task 2024-10-24T08:33:37.206Z] 08:33:37     INFO - Successfully moved artifact /builds/worker/artifacts/sccache.log to /builds/worker/cidata/sccache.log
[task 2024-10-24T08:33:37.206Z] 08:33:37     INFO - Successfully moved artifact /builds/worker/artifacts/sccache-stats.json to /builds/worker/cidata/sccache-stats.json
[task 2024-10-24T08:33:37.207Z] 08:33:37     INFO - Running post-run listener: _summarize
[task 2024-10-24T08:33:37.207Z] 08:33:37     INFO - [mozharness: 2024-10-24 08:33:37.207075Z] FxDesktopBuild summary:
[taskcluster 2024-10-24 08:33:39.239Z] === Task Finished ===
[taskcluster 2024-10-24 08:33:39.253Z] Artifact "public/cidata/target.crashreporter-symbols-full.tar.zst" not found at "/builds/worker/cidata/target.crashreporter-symbols-full.tar.zst": (HTTP code 404) no such container - Could not find the file /builds/worker/cidata/target.crashreporter-symbols-full.tar.zst in container 0719d8cc5e78609db9796b39a1fc86a606aaff521eeda334f89f30e5d6e81e21 
[taskcluster 2024-10-24 08:33:40.375Z] Unsuccessful task run with exit code: 255 completed in 2371.81 seconds
              
Flags: needinfo?(sguelton)
Pushed by sguelton@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/d92f391b3b0c Replace ArrayLength, ArrayEnd and MOZ_ARRAY_LENGTH by standard alternative r=glandium,necko-reviewers,jgilbert,application-update-reviewers,media-playback-reviewers,credential-management-reviewers,anti-tracking-reviewers,places-reviewers,profiler-reviewers,win-reviewers,dom-storage-reviewers,bytesized,janv,dimi,daisuke,karlt,gstoll,canaltinova,timhuang
Flags: needinfo?(sguelton)
Status: NEW → RESOLVED
Closed: 9 months ago
Resolution: --- → FIXED
Target Milestone: --- → 133 Branch
Blocks: 1927002

Backed out changeset d92f391b3b0c (Bug 1922838) for backing out Bug 1915351.

Flags: needinfo?(sguelton)
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Target Milestone: 133 Branch → ---
Pushed by sguelton@mozilla.com: https://hg.mozilla.org/integration/autoland/rev/e8abd5b166b5 Replace ArrayLength, ArrayEnd and MOZ_ARRAY_LENGTH by standard alternative r=glandium,necko-reviewers,jgilbert,application-update-reviewers,media-playback-reviewers,credential-management-reviewers,anti-tracking-reviewers,places-reviewers,profiler-reviewers,win-reviewers,dom-storage-reviewers,bytesized,janv,dimi,daisuke,karlt,gstoll,canaltinova,timhuang
Flags: needinfo?(sguelton)
Status: REOPENED → RESOLVED
Closed: 9 months ago9 months ago
Resolution: --- → FIXED
Target Milestone: --- → 134 Branch
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: