mirror of
https://github.com/glebarez/go-sqlite.git
synced 2025-10-05 15:56:52 +08:00
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:
@@ -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)
|
||||
}
|
||||
|
Reference in New Issue
Block a user