rust icon indicating copy to clipboard operation
rust copied to clipboard

Update rustc-hash to version 2

Open Noratrieb opened this issue 1 year ago • 17 comments

This brings in the new algorithm.

see https://github.com/rust-lang/rustc-hash/pull/37 and https://github.com/rust-lang/rust/pull/125133

Noratrieb avatar Aug 24 '24 22:08 Noratrieb

r? @Mark-Simulacrum

rustbot has assigned @Mark-Simulacrum. They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

rustbot avatar Aug 24 '24 22:08 rustbot

@bors try @rust-timer queue let's see again

Noratrieb avatar Aug 24 '24 22:08 Noratrieb

These commits modify the Cargo.lock file. Unintentional changes to Cargo.lock can be introduced when switching branches and rebasing PRs.

If this was unintentional then you should revert the changes before this PR is merged. Otherwise, you can ignore this comment.

Some changes occurred in exhaustiveness checking

cc @Nadrieril

rustdoc-json-types is a public (although nightly-only) API. If possible, consider changing src/librustdoc/json/conversions.rs; otherwise, make sure you bump the FORMAT_VERSION constant.

cc @CraftSpider, @aDotInTheVoid, @Enselic, @obi1kenobi

rustbot avatar Aug 24 '24 22:08 rustbot

Awaiting bors try build completion.

@rustbot label: +S-waiting-on-perf

rust-timer avatar Aug 24 '24 22:08 rust-timer

:hourglass: Trying commit 9f95dcfad1ae62ee356ac54880096f074c007861 with merge 1823acf8d7b07bc9313569dae227512552350ba2...

bors avatar Aug 24 '24 22:08 bors

The job x86_64-gnu-llvm-17 failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
------
 > importing cache manifest from ghcr.io/rust-lang/rust-ci-cache:20d3b4d4a2629cbf7865cdbf92fe47512a7c96658c24253a045ff38e8075cd7fb37ca6fcadfa6e6d093333943ad24f6fc4f163ec5b74fd940de9d5bb03eb4d3b:
------
##[endgroup]
Setting extra environment values for docker:  --env ENABLE_GCC_CODEGEN=1 --env GCC_EXEC_PREFIX=/usr/lib/gcc/
[CI_JOB_NAME=x86_64-gnu-llvm-17]
---
sccache: Starting the server...
##[group]Configure the build
configure: processing command line
configure: 
configure: build.configure-args := ['--build=x86_64-unknown-linux-gnu', '--llvm-root=/usr/lib/llvm-17', '--enable-llvm-link-shared', '--set', 'rust.thin-lto-import-instr-limit=10', '--set', 'change-id=99999999', '--enable-verbose-configure', '--enable-sccache', '--disable-manage-submodules', '--enable-locked-deps', '--enable-cargo-native-static', '--set', 'rust.codegen-units-std=1', '--set', 'dist.compression-profile=balanced', '--dist-compression-formats=xz', '--set', 'rust.lld=false', '--disable-dist-src', '--release-channel=nightly', '--enable-debug-assertions', '--enable-overflow-checks', '--enable-llvm-assertions', '--set', 'rust.verify-llvm-ir', '--set', 'rust.codegen-backends=llvm,cranelift,gcc', '--set', 'llvm.static-libstdcpp', '--enable-new-symbol-mangling']
configure: target.x86_64-unknown-linux-gnu.llvm-config := /usr/lib/llvm-17/bin/llvm-config
configure: llvm.link-shared     := True
configure: rust.thin-lto-import-instr-limit := 10
configure: change-id            := 99999999
---
110 
- error: missing required bound on `Iterator`
-   --> $DIR/self-outlives-lint.rs:142:5
-    |
- LL |     type Iterator<'a>: Iterator<Item = Self::Item<'a>>;
-    |                                                       |
-    |                                                       help: add the required where clause: `where Self: 'a`
-    |
-    = note: this bound is currently required to ensure that impls have maximum flexibility
---
+ 
+ error: missing required bound on `Iterator`
+   --> $DIR/self-outlives-lint.rs:142:5
+    |
+ LL |     type Iterator<'a>: Iterator<Item = Self::Item<'a>>;
+    |                                                       |
+    |                                                       help: add the required where clause: `where Self: 'a`
129    |
130    = note: this bound is currently required to ensure that impls have maximum flexibility
---
To only update this specific test, also pass `--test-args generic-associated-types/self-outlives-lint.rs`

error: 1 errors occurred comparing output.
status: exit status: 1
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/ui/generic-associated-types/self-outlives-lint.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(FALSE)" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "--emit" "metadata" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/generic-associated-types/self-outlives-lint" "-A" "unused" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/generic-associated-types/self-outlives-lint/auxiliary"
--- stderr -------------------------------
error: missing required bound on `Item`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:7:5
   |
---

error: missing required bounds on `Out`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:44:5
   |
LL |     type Out<'x, 'y>;
   |                     |
   |                     |
   |                     help: add the required where clauses: `where T: 'x, U: 'y`
   = note: these bounds are currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Out`
error: missing required bound on `Out`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:59:5
   |
LL |     type Out<'x, D>;
   |                    |
   |                    |
   |                    help: add the required where clause: `where D: 'x`
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Out`
error: missing required bound on `Out`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:75:5
   |
LL |     type Out<'x, D>;
   |                    |
   |                    |
   |                    help: add the required where clause: `where D: 'x`
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Out`
error: missing required bound on `Out`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:90:5
   |
LL |     type Out<'x, D>;
   |                    |
   |                    |
   |                    help: add the required where clause: `where D: 'x`
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bounds on `Bar`
error: missing required bounds on `Bar`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:112:5
   |
LL |     type Bar<'b>;
   |                 |
   |                 |
   |                 help: add the required where clauses: `where Self: 'a, Self: 'b`
   = note: these bounds are currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Bar`
error: missing required bound on `Bar`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:120:5
   |
LL |     type Bar<'b>;
   |                 |
   |                 help: add the required where clause: `where Self: 'b`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Bar`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:127:5
   |
LL |     type Bar<'b>;
   |                 |
   |                 help: add the required where clause: `where Self: 'b`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
---

error: missing required bound on `Iterator`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:142:5
   |
LL |     type Iterator<'a>: Iterator<Item = Self::Item<'a>>;
   |                                                       |
   |                                                       help: add the required where clause: `where Self: 'a`
   |
   = note: this bound is currently required to ensure that impls have maximum flexibility
---

error: missing required bound on `Bar`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:157:5
   |
LL |     type Bar<'a, 'b>;
   |                     |
   |                     |
   |                     help: add the required where clause: `where 'b: 'a`
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Fut`
error: missing required bound on `Fut`
##[error]  --> /checkout/tests/ui/generic-associated-types/self-outlives-lint.rs:173:5
   |
LL |     type Fut<'out>;
   |                   |
   |                   |
   |                   help: add the required where clause: `where 'ctx: 'out`
   = note: this bound is currently required to ensure that impls have maximum flexibility
   = note: we are soliciting feedback, see issue #87479 <https://github.com/rust-lang/rust/issues/87479> for more information

error: missing required bound on `Item`
---
+   --> $DIR/unused-macro-rules-decl.rs:9:5
3    |
- LL |     (four) => { 4 },
-    |     ^^^^^^
+ LL |     (two) => { 2 },
6    |
7 note: the lint level is defined here
8   --> $DIR/unused-macro-rules-decl.rs:2:9

---
-   --> $DIR/unused-macro-rules-decl.rs:9:5
+ error: rule #4 of macro `num` is never used
+   --> $DIR/unused-macro-rules-decl.rs:11:5
15    |
- LL |     (two) => { 2 },
-    |     ^^^^^
+ LL |     (four) => { 4 },
18 
19 error: rule #3 of macro `num_rec` is never used
20   --> $DIR/unused-macro-rules-decl.rs:31:5

---
To only update this specific test, also pass `--test-args lint/unused/unused-macro-rules-decl.rs`

error: 1 errors occurred comparing output.
status: exit status: 1
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/ui/lint/unused/unused-macro-rules-decl.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(FALSE)" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "--emit" "metadata" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/lint/unused/unused-macro-rules-decl" "-A" "unused" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/lint/unused/unused-macro-rules-decl/auxiliary"
--- stderr -------------------------------
error: rule #2 of macro `num` is never used
##[error]  --> /checkout/tests/ui/lint/unused/unused-macro-rules-decl.rs:9:5
   |
   |
LL |     (two) => { 2 }, //~ ERROR: rule #2 of macro
   |
note: the lint level is defined here
  --> /checkout/tests/ui/lint/unused/unused-macro-rules-decl.rs:2:9
   |
   |
LL | #![deny(unused_macro_rules)]
   |         ^^^^^^^^^^^^^^^^^^

error: rule #4 of macro `num` is never used
##[error]  --> /checkout/tests/ui/lint/unused/unused-macro-rules-decl.rs:11:5
   |
LL |     (four) => { 4 }, //~ ERROR: rule #4 of macro

error: rule #3 of macro `num_rec` is never used
##[error]  --> /checkout/tests/ui/lint/unused/unused-macro-rules-decl.rs:31:5
   |
   |
LL |     (three) => { //~ ERROR: rule #3 of macro

error: aborting due to 3 previous errors
------------------------------------------

---
12 
- error: rule #3 of macro `num2` is never used
-   --> $DIR/unused-macro-rules-compile-error.rs:22:5
-    |
- LL |     (two_) => { compile_error! };
- 
19 error: rule #2 of macro `num2` is never used
20   --> $DIR/unused-macro-rules-compile-error.rs:20:5
21    |
21    |

22 LL |     (two) => { fn compile_error() {} };
+ 
+ error: rule #3 of macro `num2` is never used
+   --> $DIR/unused-macro-rules-compile-error.rs:22:5
+    |
+    |
+ LL |     (two_) => { compile_error! };
24 
25 error: aborting due to 3 previous errors
26 

---
To only update this specific test, also pass `--test-args lint/unused/unused-macro-rules-compile-error.rs`

error: 1 errors occurred comparing output.
status: exit status: 1
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/ui/lint/unused/unused-macro-rules-compile-error.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(FALSE)" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "--emit" "metadata" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/lint/unused/unused-macro-rules-compile-error" "-A" "unused" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/lint/unused/unused-macro-rules-compile-error/auxiliary"
--- stderr -------------------------------
error: rule #5 of macro `num` is never used
##[error]  --> /checkout/tests/ui/lint/unused/unused-macro-rules-compile-error.rs:12:5
   |
   |
LL |     (four) => { 4 }; //~ ERROR: rule #5 of macro
   |
note: the lint level is defined here
  --> /checkout/tests/ui/lint/unused/unused-macro-rules-compile-error.rs:1:9
   |
   |
LL | #![deny(unused_macro_rules)]
   |         ^^^^^^^^^^^^^^^^^^

error: rule #2 of macro `num2` is never used
##[error]  --> /checkout/tests/ui/lint/unused/unused-macro-rules-compile-error.rs:20:5
   |
LL |     (two) => { fn compile_error() {} }; //~ ERROR: rule #2 of macro

error: rule #3 of macro `num2` is never used
##[error]  --> /checkout/tests/ui/lint/unused/unused-macro-rules-compile-error.rs:22:5
   |
   |
LL |     (two_) => { compile_error! }; //~ ERROR: rule #3 of macro

error: aborting due to 3 previous errors
------------------------------------------

---
+   --> $DIR/unused-macro-rules.rs:8:5
3    |
- LL |     (four) => { 4 };
-    |     ^^^^^^
+ LL |     (two) => { 2 };
6    |
7 note: the lint level is defined here
8   --> $DIR/unused-macro-rules.rs:1:9

---
-   --> $DIR/unused-macro-rules.rs:8:5
+ error: rule #4 of macro `num` is never used
+   --> $DIR/unused-macro-rules.rs:10:5
15    |
- LL |     (two) => { 2 };
-    |     ^^^^^
+ LL |     (four) => { 4 };
18 
19 error: rule #3 of macro `num_rec` is never used
20   --> $DIR/unused-macro-rules.rs:30:5

---
To only update this specific test, also pass `--test-args lint/unused/unused-macro-rules.rs`

error: 1 errors occurred comparing output.
status: exit status: 1
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/ui/lint/unused/unused-macro-rules.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(FALSE)" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "--emit" "metadata" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/lint/unused/unused-macro-rules" "-A" "unused" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/lint/unused/unused-macro-rules/auxiliary"
--- stderr -------------------------------
error: rule #2 of macro `num` is never used
##[error]  --> /checkout/tests/ui/lint/unused/unused-macro-rules.rs:8:5
   |
   |
LL |     (two) => { 2 }; //~ ERROR: rule #2 of macro
   |
note: the lint level is defined here
  --> /checkout/tests/ui/lint/unused/unused-macro-rules.rs:1:9
   |
   |
LL | #![deny(unused_macro_rules)]
   |         ^^^^^^^^^^^^^^^^^^

error: rule #4 of macro `num` is never used
##[error]  --> /checkout/tests/ui/lint/unused/unused-macro-rules.rs:10:5
   |
LL |     (four) => { 4 }; //~ ERROR: rule #4 of macro

error: rule #3 of macro `num_rec` is never used
##[error]  --> /checkout/tests/ui/lint/unused/unused-macro-rules.rs:30:5
   |
   |
LL |     (three) => { //~ ERROR: rule #3 of macro

error: aborting due to 3 previous errors
------------------------------------------



---- [ui] tests/ui/stats/hir-stats.rs stdout ----
diff of stderr:

8 ast-stats-1 WherePredicate            56 ( 0.8%)             1            56
9 ast-stats-1 - BoundPredicate            56 ( 0.8%)             1
10 ast-stats-1 Attribute                 64 ( 1.0%)             2            32
- ast-stats-1 - Normal                    32 ( 0.5%)             1
12 ast-stats-1 - DocComment                32 ( 0.5%)             1
+ ast-stats-1 - Normal                    32 ( 0.5%)             1
13 ast-stats-1 Local                     80 ( 1.2%)             1            80
14 ast-stats-1 ForeignItem               88 ( 1.3%)             1            88
15 ast-stats-1 - Fn                        88 ( 1.3%)             1

16 ast-stats-1 Arm                       96 ( 1.4%)             2            48
17 ast-stats-1 FnDecl                   120 ( 1.8%)             5            24
+ ast-stats-1 Param                    160 ( 2.4%)             4            40
18 ast-stats-1 FieldDef                 160 ( 2.4%)             2            80
19 ast-stats-1 Stmt                     160 ( 2.4%)             5            32
20 ast-stats-1 - Let                       32 ( 0.5%)             1

21 ast-stats-1 - MacCall                   32 ( 0.5%)             1
22 ast-stats-1 - Expr                      96 ( 1.4%)             3
- ast-stats-1 Param                    160 ( 2.4%)             4            40
24 ast-stats-1 Block                    192 ( 2.9%)             6            32
25 ast-stats-1 Variant                  208 ( 3.1%)             2           104
26 ast-stats-1 GenericBound             352 ( 5.3%)             4            88

41 ast-stats-1 - Block                    216 ( 3.3%)             3
42 ast-stats-1 PathSegment              744 (11.2%)            31            24
43 ast-stats-1 Ty                       896 (13.5%)            14            64
- ast-stats-1 - Ptr                       64 ( 1.0%)             1
45 ast-stats-1 - Ref                       64 ( 1.0%)             1
+ ast-stats-1 - Ptr                       64 ( 1.0%)             1
46 ast-stats-1 - ImplicitSelf             128 ( 1.9%)             2
47 ast-stats-1 - Path                     640 ( 9.6%)            10
48 ast-stats-1 Item                   1_224 (18.4%)             9           136

- ast-stats-1 - Trait                    136 ( 2.0%)             1
- ast-stats-1 - Enum                     136 ( 2.0%)             1
51 ast-stats-1 - ForeignMod               136 ( 2.0%)             1
+ ast-stats-1 - Trait                    136 ( 2.0%)             1
52 ast-stats-1 - Impl                     136 ( 2.0%)             1
+ ast-stats-1 - Enum                     136 ( 2.0%)             1
53 ast-stats-1 - Fn                       272 ( 4.1%)             2
54 ast-stats-1 - Use                      408 ( 6.1%)             3
55 ast-stats-1 ----------------------------------------------------------------

73 ast-stats-2 Attribute                128 ( 1.8%)             4            32
74 ast-stats-2 - DocComment                32 ( 0.4%)             1
75 ast-stats-2 - Normal                    96 ( 1.3%)             3
+ ast-stats-2 Param                    160 ( 2.2%)             4            40
76 ast-stats-2 FieldDef                 160 ( 2.2%)             2            80
77 ast-stats-2 Stmt                     160 ( 2.2%)             5            32
78 ast-stats-2 - Let                       32 ( 0.4%)             1

79 ast-stats-2 - Semi                      32 ( 0.4%)             1
80 ast-stats-2 - Expr                      96 ( 1.3%)             3
- ast-stats-2 Param                    160 ( 2.2%)             4            40
82 ast-stats-2 Block                    192 ( 2.6%)             6            32
83 ast-stats-2 Variant                  208 ( 2.9%)             2           104
84 ast-stats-2 GenericBound             352 ( 4.8%)             4            88

100 ast-stats-2 - Block                    216 ( 3.0%)             3
101 ast-stats-2 PathSegment              864 (11.9%)            36            24
102 ast-stats-2 Ty                       896 (12.3%)            14            64
- ast-stats-2 - Ptr                       64 ( 0.9%)             1
104 ast-stats-2 - Ref                       64 ( 0.9%)             1
+ ast-stats-2 - Ptr                       64 ( 0.9%)             1
105 ast-stats-2 - ImplicitSelf             128 ( 1.8%)             2
106 ast-stats-2 - Path                     640 ( 8.8%)            10
107 ast-stats-2 Item                   1_496 (20.5%)            11           136

- ast-stats-2 - Trait                    136 ( 1.9%)             1
109 ast-stats-2 - Enum                     136 ( 1.9%)             1
+ ast-stats-2 - Trait                    136 ( 1.9%)             1
+ ast-stats-2 - Impl                     136 ( 1.9%)             1
110 ast-stats-2 - ExternCrate              136 ( 1.9%)             1
111 ast-stats-2 - ForeignMod               136 ( 1.9%)             1
- ast-stats-2 - Impl                     136 ( 1.9%)             1
113 ast-stats-2 - Fn                       272 ( 3.7%)             2
114 ast-stats-2 - Use                      544 ( 7.5%)             4
115 ast-stats-2 ----------------------------------------------------------------

123 hir-stats Mod                       32 ( 0.4%)             1            32
124 hir-stats ExprField                 40 ( 0.4%)             1            40
125 hir-stats TraitItemRef              56 ( 0.6%)             2            28
+ hir-stats Local                     64 ( 0.7%)             1            64
126 hir-stats GenericArg                64 ( 0.7%)             4            16
127 hir-stats - Type                      16 ( 0.2%)             1
128 hir-stats - Lifetime                  48 ( 0.5%)             3

- hir-stats Local                     64 ( 0.7%)             1            64
130 hir-stats Param                     64 ( 0.7%)             2            32
- hir-stats Body                      72 ( 0.8%)             3            24
- hir-stats InlineAsm                 72 ( 0.8%)             1            72
133 hir-stats ImplItemRef               72 ( 0.8%)             2            36
+ hir-stats InlineAsm                 72 ( 0.8%)             1            72
+ hir-stats Body                      72 ( 0.8%)             3            24
134 hir-stats Arm                       80 ( 0.9%)             2            40
135 hir-stats FieldDef                  96 ( 1.1%)             2            48
136 hir-stats Stmt                      96 ( 1.1%)             3            32

139 hir-stats - Expr                      32 ( 0.4%)             1
140 hir-stats FnDecl                   120 ( 1.3%)             3            40
141 hir-stats Attribute                128 ( 1.4%)             4            32
- hir-stats Variant                  144 ( 1.6%)             2            72
143 hir-stats GenericArgs              144 ( 1.6%)             3            48
- hir-stats GenericBound             192 ( 2.1%)             4            48
- hir-stats - Trait                    192 ( 2.1%)             4
+ hir-stats Variant                  144 ( 1.6%)             2            72
146 hir-stats WherePredicate           192 ( 2.1%)             3            64
147 hir-stats - BoundPredicate           192 ( 2.1%)             3
+ hir-stats GenericBound             192 ( 2.1%)             4            48
+ hir-stats - Trait                    192 ( 2.1%)             4
148 hir-stats Block                    288 ( 3.2%)             6            48
- hir-stats GenericParam             360 ( 4.0%)             5            72
150 hir-stats Pat                      360 ( 4.0%)             5            72
- hir-stats - Wild                      72 ( 0.8%)             1
152 hir-stats - Struct                    72 ( 0.8%)             1
+ hir-stats - Wild                      72 ( 0.8%)             1
153 hir-stats - Binding                  216 ( 2.4%)             3
+ hir-stats GenericParam             360 ( 4.0%)             5            72
154 hir-stats Generics                 560 ( 6.2%)            10            56
155 hir-stats Ty                       720 ( 8.0%)            15            48
- hir-stats - Ptr                       48 ( 0.5%)             1
157 hir-stats - Ref                       48 ( 0.5%)             1
+ hir-stats - Ptr                       48 ( 0.5%)             1
158 hir-stats - Path                     624 ( 7.0%)            13
159 hir-stats Expr                     768 ( 8.6%)            12            64
160 hir-stats - Path                      64 ( 0.7%)             1

- hir-stats - Struct                    64 ( 0.7%)             1
162 hir-stats - Match                     64 ( 0.7%)             1
+ hir-stats - Struct                    64 ( 0.7%)             1
163 hir-stats - InlineAsm                 64 ( 0.7%)             1
164 hir-stats - Lit                      128 ( 1.4%)             2
165 hir-stats - Block                    384 ( 4.3%)             6
166 hir-stats Item                     968 (10.8%)            11            88
166 hir-stats Item                     968 (10.8%)            11            88
- hir-stats - Trait                     88 ( 1.0%)             1
168 hir-stats - Enum                      88 ( 1.0%)             1
+ hir-stats - Trait                     88 ( 1.0%)             1
+ hir-stats - Impl                      88 ( 1.0%)             1
169 hir-stats - ExternCrate               88 ( 1.0%)             1
170 hir-stats - ForeignMod                88 ( 1.0%)             1
- hir-stats - Impl                      88 ( 1.0%)             1
172 hir-stats - Fn                       176 ( 2.0%)             2
173 hir-stats - Use                      352 ( 3.9%)             4
174 hir-stats Path                   1_240 (13.8%)            31            40

The actual stderr differed from the expected stderr.
Actual stderr saved to /checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/stats/hir-stats/hir-stats.stderr
To update references, rerun the tests and pass the `--bless` flag
To update references, rerun the tests and pass the `--bless` flag
To only update this specific test, also pass `--test-args stats/hir-stats.rs`

error: 1 errors occurred comparing output.
status: exit status: 0
command: env -u RUSTC_LOG_COLOR RUSTC_ICE="0" RUST_BACKTRACE="short" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2/bin/rustc" "/checkout/tests/ui/stats/hir-stats.rs" "-Zthreads=1" "-Zsimulate-remapped-rust-src-base=/rustc/FAKE_PREFIX" "-Ztranslate-remapped-path-to-local-path=no" "-Z" "ignore-directory-in-diagnostics-source-blocks=/cargo" "-Z" "ignore-directory-in-diagnostics-source-blocks=/checkout/vendor" "--sysroot" "/checkout/obj/build/x86_64-unknown-linux-gnu/stage2" "--target=x86_64-unknown-linux-gnu" "--check-cfg" "cfg(FALSE)" "--error-format" "json" "--json" "future-incompat" "-Ccodegen-units=1" "-Zui-testing" "-Zdeduplicate-diagnostics=no" "-Zwrite-long-types-to-disk=no" "-Cstrip=debuginfo" "--emit" "metadata" "-C" "prefer-dynamic" "--out-dir" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/stats/hir-stats" "-A" "unused" "-A" "internal_features" "-Crpath" "-Cdebuginfo=0" "-Lnative=/checkout/obj/build/x86_64-unknown-linux-gnu/native/rust-test-helpers" "-L" "/checkout/obj/build/x86_64-unknown-linux-gnu/test/ui/stats/hir-stats/auxiliary" "-Zhir-stats"
--- stderr -------------------------------
--- stderr -------------------------------
ast-stats-1 PRE EXPANSION AST STATS
ast-stats-1 Name                Accumulated Size         Count     Item Size
ast-stats-1 ----------------------------------------------------------------
ast-stats-1 GenericArgs               40 ( 0.6%)             1            40
ast-stats-1 - AngleBracketed            40 ( 0.6%)             1
ast-stats-1 Crate                     40 ( 0.6%)             1            40
ast-stats-1 ExprField                 48 ( 0.7%)             1            48
ast-stats-1 WherePredicate            56 ( 0.8%)             1            56
ast-stats-1 - BoundPredicate            56 ( 0.8%)             1
ast-stats-1 Attribute                 64 ( 1.0%)             2            32
ast-stats-1 - DocComment                32 ( 0.5%)             1
ast-stats-1 - Normal                    32 ( 0.5%)             1
ast-stats-1 Local                     80 ( 1.2%)             1            80
ast-stats-1 ForeignItem               88 ( 1.3%)             1            88
ast-stats-1 - Fn                        88 ( 1.3%)             1
ast-stats-1 Arm                       96 ( 1.4%)             2            48
ast-stats-1 FnDecl                   120 ( 1.8%)             5            24
ast-stats-1 Param                    160 ( 2.4%)             4            40
ast-stats-1 FieldDef                 160 ( 2.4%)             2            80
ast-stats-1 Stmt                     160 ( 2.4%)             5            32
ast-stats-1 - Let                       32 ( 0.5%)             1
ast-stats-1 - MacCall                   32 ( 0.5%)             1
ast-stats-1 - Expr                      96 ( 1.4%)             3
ast-stats-1 Block                    192 ( 2.9%)             6            32
ast-stats-1 Variant                  208 ( 3.1%)             2           104
ast-stats-1 GenericBound             352 ( 5.3%)             4            88
ast-stats-1 - Trait                    352 ( 5.3%)             4
ast-stats-1 AssocItem                352 ( 5.3%)             4            88
ast-stats-1 - Type                     176 ( 2.7%)             2
ast-stats-1 - Fn                       176 ( 2.7%)             2
ast-stats-1 GenericParam             480 ( 7.2%)             5            96
ast-stats-1 Pat                      504 ( 7.6%)             7            72
ast-stats-1 - Struct                    72 ( 1.1%)             1
ast-stats-1 - Wild                      72 ( 1.1%)             1
ast-stats-1 - Ident                    360 ( 5.4%)             5
ast-stats-1 Expr                     576 ( 8.7%)             8            72
ast-stats-1 - Path                      72 ( 1.1%)             1
ast-stats-1 - Match                     72 ( 1.1%)             1
ast-stats-1 - Struct                    72 ( 1.1%)             1
ast-stats-1 - Lit                      144 ( 2.2%)             2
ast-stats-1 - Block                    216 ( 3.3%)             3
ast-stats-1 PathSegment              744 (11.2%)            31            24
ast-stats-1 Ty                       896 (13.5%)            14            64
ast-stats-1 - Ref                       64 ( 1.0%)             1
ast-stats-1 - Ptr                       64 ( 1.0%)             1
ast-stats-1 - ImplicitSelf             128 ( 1.9%)             2
ast-stats-1 - Path                     640 ( 9.6%)            10
ast-stats-1 Item                   1_224 (18.4%)             9           136
ast-stats-1 - ForeignMod               136 ( 2.0%)             1
ast-stats-1 - Trait                    136 ( 2.0%)             1
ast-stats-1 - Impl                     136 ( 2.0%)             1
ast-stats-1 - Enum                     136 ( 2.0%)             1
ast-stats-1 - Fn                       272 ( 4.1%)             2
ast-stats-1 - Use                      408 ( 6.1%)             3
ast-stats-1 ----------------------------------------------------------------
ast-stats-1 Total                  6_640
ast-stats-1
ast-stats-2 POST EXPANSION AST STATS
ast-stats-2 Name                Accumulated Size         Count     Item Size
ast-stats-2 ----------------------------------------------------------------
ast-stats-2 GenericArgs               40 ( 0.5%)             1            40
ast-stats-2 - AngleBracketed            40 ( 0.5%)             1
ast-stats-2 Crate                     40 ( 0.5%)             1            40
ast-stats-2 ExprField                 48 ( 0.7%)             1            48
ast-stats-2 WherePredicate            56 ( 0.8%)             1            56
ast-stats-2 - BoundPredicate            56 ( 0.8%)             1
ast-stats-2 Local                     80 ( 1.1%)             1            80
ast-stats-2 ForeignItem               88 ( 1.2%)             1            88
ast-stats-2 - Fn                        88 ( 1.2%)             1
ast-stats-2 Arm                       96 ( 1.3%)             2            48
ast-stats-2 InlineAsm                120 ( 1.6%)             1           120
ast-stats-2 FnDecl                   120 ( 1.6%)             5            24
ast-stats-2 Attribute                128 ( 1.8%)             4            32
ast-stats-2 - DocComment                32 ( 0.4%)             1
ast-stats-2 - Normal                    96 ( 1.3%)             3
ast-stats-2 Param                    160 ( 2.2%)             4            40
ast-stats-2 FieldDef                 160 ( 2.2%)             2            80
ast-stats-2 Stmt                     160 ( 2.2%)             5            32
ast-stats-2 - Let                       32 ( 0.4%)             1
ast-stats-2 - Semi                      32 ( 0.4%)             1
ast-stats-2 - Expr                      96 ( 1.3%)             3
ast-stats-2 Block                    192 ( 2.6%)             6            32
ast-stats-2 Variant                  208 ( 2.9%)             2           104
ast-stats-2 GenericBound             352 ( 4.8%)             4            88
ast-stats-2 - Trait                    352 ( 4.8%)             4
ast-stats-2 AssocItem                352 ( 4.8%)             4            88
ast-stats-2 - Type                     176 ( 2.4%)             2
ast-stats-2 - Fn                       176 ( 2.4%)             2
ast-stats-2 GenericParam             480 ( 6.6%)             5            96
ast-stats-2 Pat                      504 ( 6.9%)             7            72
ast-stats-2 - Struct                    72 ( 1.0%)             1
ast-stats-2 - Wild                      72 ( 1.0%)             1
ast-stats-2 - Ident                    360 ( 4.9%)             5
ast-stats-2 Expr                     648 ( 8.9%)             9            72
ast-stats-2 - Path                      72 ( 1.0%)             1
ast-stats-2 - Match                     72 ( 1.0%)             1
ast-stats-2 - Struct                    72 ( 1.0%)             1
ast-stats-2 - InlineAsm                 72 ( 1.0%)             1
ast-stats-2 - Lit                      144 ( 2.0%)             2
ast-stats-2 - Block                    216 ( 3.0%)             3
ast-stats-2 PathSegment              864 (11.9%)            36            24
ast-stats-2 Ty                       896 (12.3%)            14            64
ast-stats-2 - Ref                       64 ( 0.9%)             1
ast-stats-2 - Ptr                       64 ( 0.9%)             1
ast-stats-2 - ImplicitSelf             128 ( 1.8%)             2
ast-stats-2 - Path                     640 ( 8.8%)            10
ast-stats-2 Item                   1_496 (20.5%)            11           136
ast-stats-2 - Enum                     136 ( 1.9%)             1
ast-stats-2 - Trait                    136 ( 1.9%)             1
ast-stats-2 - Impl                     136 ( 1.9%)             1
ast-stats-2 - ExternCrate              136 ( 1.9%)             1
ast-stats-2 - ForeignMod               136 ( 1.9%)             1
ast-stats-2 - Fn                       272 ( 3.7%)             2
ast-stats-2 - Use                      544 ( 7.5%)             4
ast-stats-2 ----------------------------------------------------------------
ast-stats-2 Total                  7_288
hir-stats HIR STATS
hir-stats Name                Accumulated Size         Count     Item Size
hir-stats ----------------------------------------------------------------
hir-stats ----------------------------------------------------------------
hir-stats ForeignItemRef            24 ( 0.3%)             1            24
hir-stats Lifetime                  24 ( 0.3%)             1            24
hir-stats Mod                       32 ( 0.4%)             1            32
hir-stats ExprField                 40 ( 0.4%)             1            40
hir-stats TraitItemRef              56 ( 0.6%)             2            28
hir-stats Local                     64 ( 0.7%)             1            64
hir-stats GenericArg                64 ( 0.7%)             4            16
hir-stats - Type                      16 ( 0.2%)             1
hir-stats - Lifetime                  48 ( 0.5%)             3
hir-stats Param                     64 ( 0.7%)             2            32
hir-stats ImplItemRef               72 ( 0.8%)             2            36
hir-stats InlineAsm                 72 ( 0.8%)             1            72
hir-stats Body                      72 ( 0.8%)             3            24
hir-stats Arm                       80 ( 0.9%)             2            40
hir-stats FieldDef                  96 ( 1.1%)             2            48
hir-stats Stmt                      96 ( 1.1%)             3            32
hir-stats - Let                       32 ( 0.4%)             1
hir-stats - Semi                      32 ( 0.4%)             1
hir-stats - Expr                      32 ( 0.4%)             1
hir-stats FnDecl                   120 ( 1.3%)             3            40
hir-stats Attribute                128 ( 1.4%)             4            32
hir-stats GenericArgs              144 ( 1.6%)             3            48
hir-stats Variant                  144 ( 1.6%)             2            72
hir-stats WherePredicate           192 ( 2.1%)             3            64
hir-stats - BoundPredicate           192 ( 2.1%)             3
hir-stats GenericBound             192 ( 2.1%)             4            48
hir-stats - Trait                    192 ( 2.1%)             4
hir-stats Block                    288 ( 3.2%)             6            48
hir-stats Pat                      360 ( 4.0%)             5            72
hir-stats - Struct                    72 ( 0.8%)             1
hir-stats - Wild                      72 ( 0.8%)             1
hir-stats - Binding                  216 ( 2.4%)             3
hir-stats GenericParam             360 ( 4.0%)             5            72
hir-stats Generics                 560 ( 6.2%)            10            56
hir-stats Ty                       720 ( 8.0%)            15            48
hir-stats - Ref                       48 ( 0.5%)             1
hir-stats - Ptr                       48 ( 0.5%)             1
hir-stats - Path                     624 ( 7.0%)            13
hir-stats Expr                     768 ( 8.6%)            12            64
hir-stats - Path                      64 ( 0.7%)             1
hir-stats - Match                     64 ( 0.7%)             1
hir-stats - Struct                    64 ( 0.7%)             1
hir-stats - InlineAsm                 64 ( 0.7%)             1
hir-stats - Lit                      128 ( 1.4%)             2
hir-stats - Block                    384 ( 4.3%)             6
hir-stats Item                     968 (10.8%)            11            88
hir-stats - Enum                      88 ( 1.0%)             1
hir-stats - Trait                     88 ( 1.0%)             1
hir-stats - Impl                      88 ( 1.0%)             1
hir-stats - ExternCrate               88 ( 1.0%)             1
hir-stats - ForeignMod                88 ( 1.0%)             1
hir-stats - Fn                       176 ( 2.0%)             2
hir-stats - Use                      352 ( 3.9%)             4
hir-stats Path                   1_240 (13.8%)            31            40
hir-stats PathSegment            1_920 (21.4%)            40            48
hir-stats ----------------------------------------------------------------
hir-stats
------------------------------------------


rust-log-analyzer avatar Aug 24 '24 23:08 rust-log-analyzer

The job x86_64-gnu-llvm-17 failed! Check out the build log:

huh.

workingjubilee avatar Aug 25 '24 00:08 workingjubilee

:sunny: Try build successful - checks-actions Build commit: 1823acf8d7b07bc9313569dae227512552350ba2 (1823acf8d7b07bc9313569dae227512552350ba2)

bors avatar Aug 25 '24 00:08 bors

Queued 1823acf8d7b07bc9313569dae227512552350ba2 with parent f167efad2f51088d86180ee89177b3d7c9e7c2f5, future comparison URL. There is currently 1 preceding artifact in the queue. It will probably take at least ~2.3 hours until the benchmark run finishes.

rust-timer avatar Aug 25 '24 00:08 rust-timer

stuff relies on hashmap iteration order lol. it's sorta stable with fxhash as it has a fixed seed

Noratrieb avatar Aug 25 '24 00:08 Noratrieb

deep sigh

workingjubilee avatar Aug 25 '24 01:08 workingjubilee

Finished benchmarking commit (1823acf8d7b07bc9313569dae227512552350ba2): comparison URL.

Overall result: ❌✅ regressions and improvements - ACTION NEEDED

Benchmarking this pull request likely means that it is perf-sensitive, so we're automatically marking it as not fit for rolling up. While you can manually mark this PR as fit for rollup, we strongly recommend not doing so since this PR may lead to changes in compiler perf.

Next Steps: If you can justify the regressions found in this try perf run, please indicate this with @rustbot label: +perf-regression-triaged along with sufficient written justification. If you cannot justify the regressions please fix the regressions and do another perf run. If the next run shows neutral or positive results, the label will be automatically removed.

@bors rollup=never @rustbot label: -S-waiting-on-perf +perf-regression

Instruction count

This is a highly reliable metric that was used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
0.3% [0.3%, 0.4%] 4
Improvements ✅
(primary)
-0.3% [-0.4%, -0.2%] 11
Improvements ✅
(secondary)
-0.8% [-1.3%, -0.5%] 19
All ❌✅ (primary) -0.3% [-0.4%, -0.2%] 11

Max RSS (memory usage)

Results (primary -1.3%)

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
1.8% [1.8%, 1.8%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-4.3% [-4.3%, -4.3%] 1
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) -1.3% [-4.3%, 1.8%] 2

Cycles

Results (secondary -2.7%)

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
2.3% [2.3%, 2.3%] 1
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-3.1% [-4.2%, -1.6%] 14
All ❌✅ (primary) - - 0

Binary size

Results (secondary 0.0%)

This is a less reliable metric that may be of interest but was not used to determine the overall result at the top of this comment.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
0.0% [0.0%, 0.0%] 6
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) - - 0

Bootstrap: 750.904s -> 751.906s (0.13%) Artifact size: 338.92 MiB -> 338.80 MiB (-0.03%)

rust-timer avatar Aug 25 '24 04:08 rust-timer

On the bright side, we simultaneously reveal everything that depends on hashmap iteration order and get a faster compiler.

workingjubilee avatar Aug 25 '24 05:08 workingjubilee

Changes to the size of AST and/or HIR nodes.

cc @nnethercote

rustbot avatar Oct 17 '24 17:10 rustbot

The job mingw-check failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
#16 2.687 Building wheels for collected packages: reuse
#16 2.689   Building wheel for reuse (pyproject.toml): started
#16 2.936   Building wheel for reuse (pyproject.toml): finished with status 'done'
#16 2.937   Created wheel for reuse: filename=reuse-4.0.3-cp310-cp310-manylinux_2_35_x86_64.whl size=132720 sha256=026f3bb0f1aa8090b861fd0a0939cb1a782396d84c8aab7875096557d637a0f6
#16 2.937   Stored in directory: /tmp/pip-ephem-wheel-cache-ucqwkxsf/wheels/3d/8d/0a/e0fc6aba4494b28a967ab5eaf951c121d9c677958714e34532
#16 2.940 Installing collected packages: boolean-py, binaryornot, tomlkit, reuse, python-debian, markupsafe, license-expression, jinja2, chardet, attrs
#16 3.334 Successfully installed attrs-23.2.0 binaryornot-0.4.4 boolean-py-4.0 chardet-5.2.0 jinja2-3.1.4 license-expression-30.3.0 markupsafe-2.1.5 python-debian-0.1.49 reuse-4.0.3 tomlkit-0.13.0
#16 3.334 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv
#16 DONE 3.4s
---
    Checking rustc_incremental v0.0.0 (/checkout/compiler/rustc_incremental)
    Checking rustc_trait_selection v0.0.0 (/checkout/compiler/rustc_trait_selection)
    Checking rustc_resolve v0.0.0 (/checkout/compiler/rustc_resolve)
    Checking rustc_query_impl v0.0.0 (/checkout/compiler/rustc_query_impl)
error: use of deprecated method `indexmap::map::IndexMap::<K, V, S>::remove`: `remove` disrupts the map order -- use `swap_remove` or `shift_remove` for explicit behavior.
    |
    |
343 |         self.unused_macro_rules.remove(&(did, rule_i));
    |
    = note: `-D deprecated` implied by `-D warnings`
    = help: to override `-D warnings` add `#[allow(deprecated)]`

rust-log-analyzer avatar Oct 17 '24 18:10 rust-log-analyzer

The job x86_64-gnu-tools failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
Running 133 rustdoc-gui (1 concurrently) ...
........   (8/133)


/checkout/tests/rustdoc-gui/anchor-navigable.goml anchor-navigable... FAILED
[ERROR] `tests/rustdoc-gui/anchor-navigable.goml` around line 7: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/anchors.goml anchors... FAILED
[ERROR] `tests/rustdoc-gui/anchors.goml` around line 8
    from `tests/rustdoc-gui/anchors.goml` line 71: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/basic-code.goml basic-code... FAILED
[ERROR] `tests/rustdoc-gui/basic-code.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/check-code-blocks-margin.goml check-code-blocks-margin... FAILED
[ERROR] `tests/rustdoc-gui/check-code-blocks-margin.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/check-stab-in-docblock.goml check-stab-in-docblock... FAILED
[ERROR] `tests/rustdoc-gui/check-stab-in-docblock.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/check_info_sign_position.goml check_info_sign_position... FAILED
[ERROR] `tests/rustdoc-gui/check_info_sign_position.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/code-blocks-overflow.goml code-blocks-overflow... FAILED
[ERROR] `tests/rustdoc-gui/code-blocks-overflow.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/code-color.goml code-color... FAILED
[ERROR] `tests/rustdoc-gui/code-color.goml` around line 6: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/code-example-buttons.goml code-example-buttons... FAILED
[ERROR] `tests/rustdoc-gui/code-example-buttons.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/code-sidebar-toggle.goml code-sidebar-toggle... FAILED
[ERROR] `tests/rustdoc-gui/code-sidebar-toggle.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/codeblock-sub.goml codeblock-sub... FAILED
[ERROR] `tests/rustdoc-gui/codeblock-sub.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/codeblock-tooltip.goml codeblock-tooltip... FAILED
[ERROR] `tests/rustdoc-gui/codeblock-tooltip.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/copy-code.goml copy-code... FAILED
[ERROR] `tests/rustdoc-gui/copy-code.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/copy-path.goml copy-path... FAILED
[ERROR] `tests/rustdoc-gui/copy-path.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/cursor.goml cursor... FAILED
[ERROR] `tests/rustdoc-gui/cursor.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/default-settings.goml default-settings... FAILED
[ERROR] `tests/rustdoc-gui/default-settings.goml` around line 5: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/deref-block.goml deref-block... FAILED
[ERROR] `tests/rustdoc-gui/deref-block.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-It-acdfaf1a8af734b1.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-big-code-mobile.goml docblock-big-code-mobile... FAILED
[ERROR] `tests/rustdoc-gui/docblock-big-code-mobile.goml` around line 4: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-code-block-line-number.goml docblock-code-block-line-number... FAILED
[ERROR] `tests/rustdoc-gui/docblock-code-block-line-number.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET Error: ()
file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-details.goml docblock-details... FAILED
[ERROR] `tests/rustdoc-gui/docblock-details.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-table-overflow.goml docblock-table-overflow... FAILED
[ERROR] `tests/rustdoc-gui/docblock-table-overflow.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-table.goml docblock-table... FAILED
[ERROR] `tests/rustdoc-gui/docblock-table.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/duplicate-macro-reexport.goml duplicate-macro-reexport... FAILED
[ERROR] `tests/rustdoc-gui/duplicate-macro-reexport.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/enum-variants.goml enum-variants... FAILED
[ERROR] `tests/rustdoc-gui/enum-variants.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/escape-key.goml escape-key... FAILED
[ERROR] `tests/rustdoc-gui/escape-key.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/extend-css.goml extend-css... FAILED
[ERROR] `tests/rustdoc-gui/extend-css.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/fields.goml fields... FAILED
[ERROR] `tests/rustdoc-gui/fields.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/font-weight.goml font-weight... FAILED
[ERROR] `tests/rustdoc-gui/font-weight.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/globals.goml globals... FAILED
[ERROR] `tests/rustdoc-gui/globals.goml` around line 6: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/go-to-collapsed-elem.goml go-to-collapsed-elem... FAILED
[ERROR] `tests/rustdoc-gui/go-to-collapsed-elem.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/hash-item-expansion.goml hash-item-expansion... FAILED
[ERROR] `tests/rustdoc-gui/hash-item-expansion.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/headers-color.goml headers-color... FAILED
[ERROR] `tests/rustdoc-gui/headers-color.goml` around line 9
    from `tests/rustdoc-gui/headers-color.goml` line 42: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/headings-anchor.goml headings-anchor... FAILED
[ERROR] `tests/rustdoc-gui/headings-anchor.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/headings.goml headings... FAILED
[ERROR] `tests/rustdoc-gui/headings.goml` around line 15: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/help-page.goml help-page... FAILED
[ERROR] `tests/rustdoc-gui/help-page.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/hide-mobile-topbar.goml hide-mobile-topbar... FAILED
[ERROR] `tests/rustdoc-gui/hide-mobile-topbar.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/highlight-colors.goml highlight-colors... FAILED
[ERROR] `tests/rustdoc-gui/highlight-colors.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/huge-collection-of-constants.goml huge-collection-of-constants... FAILED
[ERROR] `tests/rustdoc-gui/huge-collection-of-constants.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/huge-logo.goml huge-logo... FAILED
[ERROR] `tests/rustdoc-gui/huge-logo.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/impl-default-expansion.goml impl-default-expansion... FAILED
[ERROR] `tests/rustdoc-gui/impl-default-expansion.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/impl-doc.goml impl-doc... FAILED
[ERROR] `tests/rustdoc-gui/impl-doc.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/impl_on_foreign_order.goml impl_on_foreign_order... FAILED
[ERROR] `tests/rustdoc-gui/impl_on_foreign_order.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/implementors.goml implementors... FAILED
[ERROR] `tests/rustdoc-gui/implementors.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-It-acdfaf1a8af734b1.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-decl-comment-highlighting.goml item-decl-comment-highlighting... FAILED
[ERROR] `tests/rustdoc-gui/item-decl-comment-highlighting.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-info-alignment.goml item-info-alignment... FAILED
[ERROR] `tests/rustdoc-gui/item-info-alignment.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-info-overflow.goml item-info-overflow... FAILED
[ERROR] `tests/rustdoc-gui/item-info-overflow.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-info.goml item-info... FAILED
[ERROR] `tests/rustdoc-gui/item-info.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-name-wrap.goml item-name-wrap... FAILED
[ERROR] `tests/rustdoc-gui/item-name-wrap.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-summary-table.goml item-summary-table... FAILED
[ERROR] `tests/rustdoc-gui/item-summary-table.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/javascript-disabled.goml javascript-disabled... FAILED
[ERROR] `tests/rustdoc-gui/javascript-disabled.goml` around line 5: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/jump-to-def-background.goml jump-to-def-background... FAILED
[ERROR] `tests/rustdoc-gui/jump-to-def-background.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/label-next-to-symbol.goml label-next-to-symbol... FAILED
[ERROR] `tests/rustdoc-gui/label-next-to-symbol.goml` around line 4: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/links-color.goml links-color... FAILED
[ERROR] `tests/rustdoc-gui/links-color.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/list-margins.goml list-margins... FAILED
[ERROR] `tests/rustdoc-gui/list-margins.goml` around line 4: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/list_code_block.goml list_code_block... FAILED
[ERROR] `tests/rustdoc-gui/list_code_block.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/method-margins.goml method-margins... FAILED
[ERROR] `tests/rustdoc-gui/method-margins.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/methods-left-margin.goml methods-left-margin... FAILED
[ERROR] `tests/rustdoc-gui/methods-left-margin.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/mobile-crate-name.goml mobile-crate-name... FAILED
[ERROR] `tests/rustdoc-gui/mobile-crate-name.goml` around line 4: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/mobile.goml mobile... FAILED
[ERROR] `tests/rustdoc-gui/mobile.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/module-items-font.goml module-items-font... FAILED
[ERROR] `tests/rustdoc-gui/module-items-font.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
  local time: Thu Oct 17 19:13:07 UTC 2024
  network time: Thu, 17 Oct 2024 19:13:07 GMT
##[error]Process completed with exit code 1.
Post job cleanup.

rust-log-analyzer avatar Oct 17 '24 19:10 rust-log-analyzer

uhh wtf?? @GuillaumeGomez do you have an idea why changing fxhash would cause rustdoc-gui tests to fail to find fonts?

Noratrieb avatar Oct 18 '24 06:10 Noratrieb

Wth. Someone cursed this CI run, I have no other explanation... I think it's safe to ignore this failure (or just make another CI run).

GuillaumeGomez avatar Oct 18 '24 15:10 GuillaumeGomez

you know, i wanted to ignore this failure but when i re-ran it and it failed again D:. well, let's rebase and try again, maybe it works now. hopefully. but thanks for the confirmation that i'm not the only confused person about this

Noratrieb avatar Oct 18 '24 16:10 Noratrieb

One option if this CI run doesn't succeed is disabling the rustdoc-gui suite.

Does anyone have any better ideas?

workingjubilee avatar Oct 18 '24 16:10 workingjubilee

The job x86_64-gnu-tools failed! Check out the build log: (web) (plain)

Click to see the possible cause of the failure (guessed by this bot)
    # "error: cannot produce cdylib for ... as the target ... does not support these crate types".
    # Only run "pass" tests, which is quite a bit faster.
    #FIXME: Re-enable this once CI issues are fixed
    # See <https://github.com/rust-lang/rust/issues/127883>
    # For now, these tests are moved to `x86_64-msvc-ext2` in `src/ci/github-actions/jobs.yml`.
    #python3 "$X_PY" test --stage 2 src/tools/miri --target i686-pc-windows-gnu --test-args pass
    ;;
  *)
    echo "FATAL: unexpected host $HOST_TARGET"
---
Running 133 rustdoc-gui (1 concurrently) ...
........   (8/133)


/checkout/tests/rustdoc-gui/anchor-navigable.goml anchor-navigable... FAILED
[ERROR] `tests/rustdoc-gui/anchor-navigable.goml` around line 7: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/anchors.goml anchors... FAILED
[ERROR] `tests/rustdoc-gui/anchors.goml` around line 8
    from `tests/rustdoc-gui/anchors.goml` line 71: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/basic-code.goml basic-code... FAILED
[ERROR] `tests/rustdoc-gui/basic-code.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/check-code-blocks-margin.goml check-code-blocks-margin... FAILED
[ERROR] `tests/rustdoc-gui/check-code-blocks-margin.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/check-stab-in-docblock.goml check-stab-in-docblock... FAILED
[ERROR] `tests/rustdoc-gui/check-stab-in-docblock.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/check_info_sign_position.goml check_info_sign_position... FAILED
[ERROR] `tests/rustdoc-gui/check_info_sign_position.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/code-blocks-overflow.goml code-blocks-overflow... FAILED
[ERROR] `tests/rustdoc-gui/code-blocks-overflow.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/code-color.goml code-color... FAILED
[ERROR] `tests/rustdoc-gui/code-color.goml` around line 6: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/code-example-buttons.goml code-example-buttons... FAILED
[ERROR] `tests/rustdoc-gui/code-example-buttons.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/code-sidebar-toggle.goml code-sidebar-toggle... FAILED
[ERROR] `tests/rustdoc-gui/code-sidebar-toggle.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/codeblock-sub.goml codeblock-sub... FAILED
[ERROR] `tests/rustdoc-gui/codeblock-sub.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/codeblock-tooltip.goml codeblock-tooltip... FAILED
[ERROR] `tests/rustdoc-gui/codeblock-tooltip.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/copy-code.goml copy-code... FAILED
[ERROR] `tests/rustdoc-gui/copy-code.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/copy-path.goml copy-path... FAILED
[ERROR] `tests/rustdoc-gui/copy-path.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/cursor.goml cursor... FAILED
[ERROR] `tests/rustdoc-gui/cursor.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/default-settings.goml default-settings... FAILED
[ERROR] `tests/rustdoc-gui/default-settings.goml` around line 5: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/deref-block.goml deref-block... FAILED
[ERROR] `tests/rustdoc-gui/deref-block.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-It-acdfaf1a8af734b1.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-big-code-mobile.goml docblock-big-code-mobile... FAILED
[ERROR] `tests/rustdoc-gui/docblock-big-code-mobile.goml` around line 4: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-code-block-line-number.goml docblock-code-block-line-number... FAILED
[ERROR] `tests/rustdoc-gui/docblock-code-block-line-number.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-details.goml docblock-details... FAILED
[ERROR] `tests/rustdoc-gui/docblock-details.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562Error: ()
dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-table-overflow.goml docblock-table-overflow... FAILED
[ERROR] `tests/rustdoc-gui/docblock-table-overflow.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/docblock-table.goml docblock-table... FAILED
[ERROR] `tests/rustdoc-gui/docblock-table.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/duplicate-macro-reexport.goml duplicate-macro-reexport... FAILED
[ERROR] `tests/rustdoc-gui/duplicate-macro-reexport.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/enum-variants.goml enum-variants... FAILED
[ERROR] `tests/rustdoc-gui/enum-variants.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/escape-key.goml escape-key... FAILED
[ERROR] `tests/rustdoc-gui/escape-key.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/extend-css.goml extend-css... FAILED
[ERROR] `tests/rustdoc-gui/extend-css.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/fields.goml fields... FAILED
[ERROR] `tests/rustdoc-gui/fields.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/font-weight.goml font-weight... FAILED
[ERROR] `tests/rustdoc-gui/font-weight.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/globals.goml globals... FAILED
[ERROR] `tests/rustdoc-gui/globals.goml` around line 6: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/go-to-collapsed-elem.goml go-to-collapsed-elem... FAILED
[ERROR] `tests/rustdoc-gui/go-to-collapsed-elem.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/hash-item-expansion.goml hash-item-expansion... FAILED
[ERROR] `tests/rustdoc-gui/hash-item-expansion.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/headers-color.goml headers-color... FAILED
[ERROR] `tests/rustdoc-gui/headers-color.goml` around line 9
    from `tests/rustdoc-gui/headers-color.goml` line 42: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/headings-anchor.goml headings-anchor... FAILED
[ERROR] `tests/rustdoc-gui/headings-anchor.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/headings.goml headings... FAILED
[ERROR] `tests/rustdoc-gui/headings.goml` around line 15: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/help-page.goml help-page... FAILED
[ERROR] `tests/rustdoc-gui/help-page.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/hide-mobile-topbar.goml hide-mobile-topbar... FAILED
[ERROR] `tests/rustdoc-gui/hide-mobile-topbar.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/highlight-colors.goml highlight-colors... FAILED
[ERROR] `tests/rustdoc-gui/highlight-colors.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/huge-collection-of-constants.goml huge-collection-of-constants... FAILED
[ERROR] `tests/rustdoc-gui/huge-collection-of-constants.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/huge-logo.goml huge-logo... FAILED
[ERROR] `tests/rustdoc-gui/huge-logo.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/impl-default-expansion.goml impl-default-expansion... FAILED
[ERROR] `tests/rustdoc-gui/impl-default-expansion.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/impl-doc.goml impl-doc... FAILED
[ERROR] `tests/rustdoc-gui/impl-doc.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/impl_on_foreign_order.goml impl_on_foreign_order... FAILED
[ERROR] `tests/rustdoc-gui/impl_on_foreign_order.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/implementors.goml implementors... FAILED
[ERROR] `tests/rustdoc-gui/implementors.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-It-acdfaf1a8af734b1.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-decl-comment-highlighting.goml item-decl-comment-highlighting... FAILED
[ERROR] `tests/rustdoc-gui/item-decl-comment-highlighting.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-info-alignment.goml item-info-alignment... FAILED
[ERROR] `tests/rustdoc-gui/item-info-alignment.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-info-overflow.goml item-info-overflow... FAILED
[ERROR] `tests/rustdoc-gui/item-info-overflow.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-info.goml item-info... FAILED
[ERROR] `tests/rustdoc-gui/item-info.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-name-wrap.goml item-name-wrap... FAILED
[ERROR] `tests/rustdoc-gui/item-name-wrap.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/item-summary-table.goml item-summary-table... FAILED
[ERROR] `tests/rustdoc-gui/item-summary-table.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/javascript-disabled.goml javascript-disabled... FAILED
[ERROR] `tests/rustdoc-gui/javascript-disabled.goml` around line 5: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/jump-to-def-background.goml jump-to-def-background... FAILED
[ERROR] `tests/rustdoc-gui/jump-to-def-background.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/label-next-to-symbol.goml label-next-to-symbol... FAILED
[ERROR] `tests/rustdoc-gui/label-next-to-symbol.goml` around line 4: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/links-color.goml links-color... FAILED
[ERROR] `tests/rustdoc-gui/links-color.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/list-margins.goml list-margins... FAILED
[ERROR] `tests/rustdoc-gui/list-margins.goml` around line 4: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/list_code_block.goml list_code_block... FAILED
[ERROR] `tests/rustdoc-gui/list_code_block.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/method-margins.goml method-margins... FAILED
[ERROR] `tests/rustdoc-gui/method-margins.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/methods-left-margin.goml methods-left-margin... FAILED
[ERROR] `tests/rustdoc-gui/methods-left-margin.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/mobile-crate-name.goml mobile-crate-name... FAILED
[ERROR] `tests/rustdoc-gui/mobile-crate-name.goml` around line 4: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/mobile.goml mobile... FAILED
[ERROR] `tests/rustdoc-gui/mobile.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/module-items-font.goml module-items-font... FAILED
[ERROR] `tests/rustdoc-gui/module-items-font.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/notable-trait.goml notable-trait... FAILED
[ERROR] `tests/rustdoc-gui/notable-trait.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/overflow-tooltip-information.goml overflow-tooltip-information... FAILED
[ERROR] `tests/rustdoc-gui/overflow-tooltip-information.goml` around line 4: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Bold-a2c9cd1067f8b328.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Semibold-d899c5a5c4aeb14a.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/pocket-menu.goml pocket-menu... FAILED
[ERROR] `tests/rustdoc-gui/pocket-menu.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/rust-logo.goml rust-logo... FAILED
[ERROR] `tests/rustdoc-gui/rust-logo.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/scrape-examples-button-focus.goml scrape-examples-button-focus... FAILED
[ERROR] `tests/rustdoc-gui/scrape-examples-button-focus.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/scrape-examples-color.goml scrape-examples-color... FAILED
[ERROR] `tests/rustdoc-gui/scrape-examples-color.goml` around line 3: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/scrape-examples-fonts.goml scrape-examples-fonts... FAILED
[ERROR] `tests/rustdoc-gui/scrape-examples-fonts.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
/checkout/tests/rustdoc-gui/scrape-examples-layout.goml scrape-examples-layout... FAILED
[ERROR] `tests/rustdoc-gui/scrape-examples-layout.goml` around line 2: request failed: [GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Medium-8f9a781e4970d388.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/FiraSans-Regular-018c141bf0843ffd.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceCodePro-Regular-562dcc5011b6de7d.ttf.woff2]: net::ERR_FILE_NOT_FOUND
[GET file:///checkout/obj/build/x86_64-unknown-linux-gnu/test/rustdoc-gui/doc/static.files/SourceSerif4-Regular-46f98efaafac5295.ttf.woff2]: net::ERR_FILE_NOT_FOUND
  local time: Fri Oct 18 17:02:22 UTC 2024
  network time: Fri, 18 Oct 2024 17:02:22 GMT
##[error]Process completed with exit code 1.
Post job cleanup.

rust-log-analyzer avatar Oct 18 '24 17:10 rust-log-analyzer

One option if this CI run doesn't succeed is disabling the rustdoc-gui suite.

Does anyone have any better ideas?

https://github.com/rust-lang/rust/blob/master/src/librustdoc/html/static/css/rustdoc.css have hardcoded filenames with hashes.

Updated hashes:

FiraSans-Medium-f6efa4ecb724bc4f.woff2
FiraSans-Regular-0470935cb0ab98ec.woff2
NanumBarunGothic-58f87a644867d424.ttf.woff2
SourceCodePro-It-e734904fb51e2300.ttf.woff2
SourceCodePro-Regular-08549fecc673b923.ttf.woff2
SourceCodePro-Semibold-aa8b11cc2985459a.ttf.woff2
SourceSerif4-Bold-22493a6285efac91.ttf.woff2
SourceSerif4-It-f2e3806d11fe601c.ttf.woff2
SourceSerif4-Regular-705d805f0c84d042.ttf.woff2

klensy avatar Oct 18 '24 19:10 klensy

One option if this CI run doesn't succeed is disabling the rustdoc-gui suite.

Does anyone have any better ideas?

Please don't.

I'll take a look in a few days when I'm back. I think something unrelated like maybe disk space is in cause.

GuillaumeGomez avatar Oct 19 '24 00:10 GuillaumeGomez

I think something unrelated like maybe disk space is in cause.

No, the error is actually accurate (and it's concerning that (almost) everyone see's a rustdoc-gui failure and assumes it's something spooky). Fix/explanation is here: #131908

aDotInTheVoid avatar Oct 19 '24 00:10 aDotInTheVoid

ferris forgor

Noratrieb avatar Oct 19 '24 20:10 Noratrieb

Eeeeek, sorry!

aDotInTheVoid avatar Oct 19 '24 20:10 aDotInTheVoid

it's ok, you were gaming hard on your pr :heart:

Noratrieb avatar Oct 19 '24 20:10 Noratrieb