replace ':' in picture file names with '_'

Windows builders cannot cope with the names, see:

7f7b643325/logs/win64
7f7b643325/logs/win32
This commit is contained in:
Jan Mercl
2021-12-17 21:25:11 +01:00
parent f3f0441452
commit 49148932f6
5 changed files with 1 additions and 1 deletions

View File

@@ -95,7 +95,7 @@ func TestBenchmarkAndPlot(t *testing.T) {
}
// render graph into file
outputFilename := path.Join("out", fmt.Sprintf("%s_memory:%v.png", getFuncName(benchFunc), isMemoryDB))
outputFilename := path.Join("out", fmt.Sprintf("%s_memory_%v.png", getFuncName(benchFunc), isMemoryDB))
if err := graph.Render(outputFilename); err != nil {
log.Fatal(err)
}

View File

Before

Width:  |  Height:  |  Size: 38 KiB

After

Width:  |  Height:  |  Size: 38 KiB

View File

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 35 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB