replace ':' in picture file names with '_'
Windows builders cannot cope with the names, see:7f7b643325/logs/win64
7f7b643325/logs/win32
@@ -95,7 +95,7 @@ func TestBenchmarkAndPlot(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// render graph into file
|
// 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 {
|
if err := graph.Render(outputFilename); err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 38 KiB After Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 35 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 36 KiB After Width: | Height: | Size: 36 KiB |