Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions cpc/cpc_sketch_serialization_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ import (
)

func TestGenerateGoFiles(t *testing.T) {
if len(os.Getenv(internal.DSketchTestGenerateGo)) == 0 {
t.Skipf("%s not set", internal.DSketchTestGenerateGo)
}

nArr := []int{0, 100, 200, 2000, 20000}
flavorArr := []CpcFlavor{CpcFlavorEmpty, CpcFlavorSparse, CpcFlavorHybrid, CpcFlavorPinned, CpcFlavorSliding}
for flavorIdx, n := range nArr {
Expand Down
2 changes: 1 addition & 1 deletion kll/items_sletch_serialization_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ func TestGenerateGoFiles(t *testing.T) {
t.Skipf("%s not set", internal.DSketchTestGenerateGo)
}

os.Mkdir(internal.GoPath, 0755)
os.MkdirAll(internal.GoPath, 0755)

nArr := []int{0, 1, 10, 100, 1000, 10000, 100000, 1000000}
comparatorString := common.ItemSketchStringComparator(false)
Expand Down
Loading