65a6b08fd3
The initial assumption were that inside compiler and test framework all line breaks are normalized, because we read text files only through IDEA utils (which do normalization). The mistake was that 'StringBuilder.appendln()' appends 'System.lineSeparator()' as well, so it's not enough to only check that we don't load files from disk without normalizing whitespaces. Note that using 'it.replace(System.lineSeparator(), ...)' would be incorrect too, because actually we have strings with two kinds of line breaks here (normalized and not normalized), so we're looking for both via simple regex.