Skip estimation test for 386.

pull/9150/head
Ben Johnson 2017-12-21 15:43:11 -07:00
parent 895ca7a04b
commit bc0d68f405
No known key found for this signature in database
GPG Key ID: 81741CD251883081
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,7 @@ import (
"net/http"
"net/url"
"os"
"runtime"
"strconv"
"strings"
"sync"
@ -7637,7 +7638,10 @@ func TestServer_Query_ShowMeasurements(t *testing.T) {
func TestServer_Query_ShowMeasurementCardinalityEstimation(t *testing.T) {
if testing.Short() || os.Getenv("GORACE") != "" || os.Getenv("APPVEYOR") != "" {
t.Skip("Skipping test in short, race and appveyor mode.")
} else if runtime.GOARCH == "386" {
t.Skip("Skipping test in for 386.")
}
println("dbg/GOARCH", runtime.GOARCH)
t.Parallel()
s := OpenServer(NewConfig())