diff options
| author | Maybe Waffle <waffle.lapkin@gmail.com> | 2023-01-17 11:02:46 +0000 |
|---|---|---|
| committer | Maybe Waffle <waffle.lapkin@gmail.com> | 2023-01-17 11:23:29 +0000 |
| commit | 65d1e8d9b556095dc50dc357e1ec4899afc3e975 (patch) | |
| tree | d2539a53cdfc9b29591edc8b0a79009baa717b1e | |
| parent | 4a6d9de8285a8e1b830b22bc2e6203304952df69 (diff) | |
Hack compiletest to fix a random CI failure
| -rw-r--r-- | src/tools/compiletest/src/read2.rs | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/tools/compiletest/src/read2.rs b/src/tools/compiletest/src/read2.rs index 7640e651744..a5dc6859732 100644 --- a/src/tools/compiletest/src/read2.rs +++ b/src/tools/compiletest/src/read2.rs @@ -110,9 +110,18 @@ impl ProcOutput { fn into_bytes(self) -> Vec<u8> { match self { ProcOutput::Full { bytes, .. } => bytes, - ProcOutput::Abbreviated { mut head, skipped, tail } => { + ProcOutput::Abbreviated { mut head, mut skipped, tail } => { + let mut tail = &*tail; + + // Skip over '{' at the start of the tail, so we don't later wrongfully consider this as json. + // See <https://rust-lang.zulipchat.com/#narrow/stream/182449-t-compiler.2Fhelp/topic/Weird.20CI.20failure/near/321797811> + while tail.get(0) == Some(&b'{') { + tail = &tail[1..]; + skipped += 1; + } + write!(&mut head, "\n\n<<<<<< SKIPPED {} BYTES >>>>>>\n\n", skipped).unwrap(); - head.extend_from_slice(&tail); + head.extend_from_slice(tail); head } } |
