Skip TestCache_Deduplicate_Concurrent on windows

pull/8245/head
Jason Wilder 2017-04-04 08:48:55 -06:00
parent 386e769d7d
commit 4f850b5cff
1 changed files with 2 additions and 2 deletions

View File

@ -519,8 +519,8 @@ func TestCache_CacheWriteMemoryExceeded(t *testing.T) {
} }
func TestCache_Deduplicate_Concurrent(t *testing.T) { func TestCache_Deduplicate_Concurrent(t *testing.T) {
if testing.Short() || os.Getenv("GORACE") != "" { if testing.Short() || os.Getenv("GORACE") != "" || os.Getenv("APPVEYOR") != "" {
t.Skip("Skipping test in short mode.") t.Skip("Skipping test in short, race, appveyor mode.")
} }
values := make(map[string][]Value) values := make(map[string][]Value)