From 7c195be87f59a0837947795684dc4c6b0a0bf8e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Stemmer?= Date: Fri, 13 May 2022 21:01:49 +0100 Subject: [PATCH] Do not trim output whitespace prefix Whitespace prefix of output lines was carried over from the old v1 version, but in some cases it removes too much whitespace. Ideally it would detect the common prefix of all output lines for a given text and only trim that. Until that's fixed, let's just stop removing the whitespace. Fixes #131 --- junit/junit.go | 2 +- testdata/002-report.xml | 8 ++++---- testdata/003-report.xml | 2 +- testdata/006-report.xml | 8 ++++---- testdata/012-report.xml | 12 ++++++------ testdata/017-report.xml | 2 +- testdata/020-report.xml | 6 +++--- testdata/030-report.xml | 32 ++++++++++++++++---------------- testdata/101-report.xml | 8 ++++---- testdata/103-report.xml | 2 +- testdata/104-report.xml | 4 ++-- testdata/107-report.xml | 4 ++-- testdata/112-report.xml | 12 ++++++------ 13 files changed, 51 insertions(+), 51 deletions(-) diff --git a/junit/junit.go b/junit/junit.go index 69c9046..aec28b9 100644 --- a/junit/junit.go +++ b/junit/junit.go @@ -259,7 +259,7 @@ func formatBenchmarkTime(d time.Duration) string { func formatOutput(output []string, indent int) string { var lines []string for _, line := range output { - lines = append(lines, gtr.TrimPrefixSpaces(line, indent)) + lines = append(lines, line) } return strings.Join(lines, "\n") } diff --git a/testdata/002-report.xml b/testdata/002-report.xml index 06a003f..89380ca 100644 --- a/testdata/002-report.xml +++ b/testdata/002-report.xml @@ -5,10 +5,10 @@ - + diff --git a/testdata/003-report.xml b/testdata/003-report.xml index 92c1506..2fe012b 100644 --- a/testdata/003-report.xml +++ b/testdata/003-report.xml @@ -5,7 +5,7 @@ - + diff --git a/testdata/006-report.xml b/testdata/006-report.xml index 7994e4b..fb081e2 100644 --- a/testdata/006-report.xml +++ b/testdata/006-report.xml @@ -11,10 +11,10 @@ - + diff --git a/testdata/012-report.xml b/testdata/012-report.xml index b58a8b1..659b959 100644 --- a/testdata/012-report.xml +++ b/testdata/012-report.xml @@ -20,19 +20,19 @@ - + - + - + - + diff --git a/testdata/017-report.xml b/testdata/017-report.xml index d272124..a216621 100644 --- a/testdata/017-report.xml +++ b/testdata/017-report.xml @@ -39,7 +39,7 @@ Goroutine 6 (running) created at: main.main() _test/_testmain.go:52 +0x20f ================== -testing.go:610: race detected during execution of test]]> + testing.go:610: race detected during execution of test]]> diff --git a/testdata/020-report.xml b/testdata/020-report.xml index b78f72d..237bb6c 100644 --- a/testdata/020-report.xml +++ b/testdata/020-report.xml @@ -7,15 +7,15 @@ + parallel_test.go:14: FirstTest error]]> + parallel_test.go:23: SecondTest error]]> + parallel_test.go:32: ThirdTest error]]> diff --git a/testdata/030-report.xml b/testdata/030-report.xml index 8e91aae..4a1c365 100644 --- a/testdata/030-report.xml +++ b/testdata/030-report.xml @@ -9,10 +9,10 @@ line stdout single-line stdout -example_test.go:13: single-line error -example_test.go:14: multi - line - error]]> + example_test.go:13: single-line error + example_test.go:14: multi + line + error]]> - + @@ -41,10 +41,10 @@ example_test.go:27: multi line stdout 1 single-line stdout -example_test.go:65: 1 single-line error -example_test.go:66: 1 multi - line - error]]> + example_test.go:65: 1 single-line error + example_test.go:66: 1 multi + line + error]]> - + diff --git a/testdata/101-report.xml b/testdata/101-report.xml index 47bdb40..c7c9114 100644 --- a/testdata/101-report.xml +++ b/testdata/101-report.xml @@ -5,10 +5,10 @@ - + diff --git a/testdata/103-report.xml b/testdata/103-report.xml index a9aae8b..bebcb4f 100644 --- a/testdata/103-report.xml +++ b/testdata/103-report.xml @@ -9,7 +9,7 @@ - + diff --git a/testdata/104-report.xml b/testdata/104-report.xml index 7916635..39b647d 100644 --- a/testdata/104-report.xml +++ b/testdata/104-report.xml @@ -45,9 +45,9 @@ Goroutine 7 (running) created at: main.main() _testmain.go:47 +0x2e4 ================== -testing.go:1312: race detected during execution of test]]> + testing.go:1312: race detected during execution of test]]> - diff --git a/testdata/107-report.xml b/testdata/107-report.xml index c5e050f..bfd72e8 100644 --- a/testdata/107-report.xml +++ b/testdata/107-report.xml @@ -5,10 +5,10 @@ - + - + diff --git a/testdata/112-report.xml b/testdata/112-report.xml index 41934eb..f08b135 100644 --- a/testdata/112-report.xml +++ b/testdata/112-report.xml @@ -5,19 +5,19 @@ - + pkg_test.go:14: P1 error]]> - + pkg_test.go:23: P2 error]]> - + pkg_test.go:32: P3 error]]>