Closed
Description
Running a ui
test will eventually invoke the following function:
rust/src/tools/compiletest/src/read2.rs
Lines 48 to 57 in 4ca19e0
through
rust/src/tools/compiletest/src/runtest.rs
Lines 1772 to 1780 in 4ca19e0
which can truncate a long output from the compiler. The problem is that UI tests ask the compiler to output its output as json and then attempts to parse it later, for example here:
rust/src/tools/compiletest/src/runtest.rs
Line 3114 in 4ca19e0
which can fail due to truncation and output very difficult to investigate output in e.g. CI.