Skip estimation test for 386.
parent
895ca7a04b
commit
bc0d68f405
|
@ -7,6 +7,7 @@ import (
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
"net/url"
|
||||||
"os"
|
"os"
|
||||||
|
"runtime"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
|
@ -7637,7 +7638,10 @@ func TestServer_Query_ShowMeasurements(t *testing.T) {
|
||||||
func TestServer_Query_ShowMeasurementCardinalityEstimation(t *testing.T) {
|
func TestServer_Query_ShowMeasurementCardinalityEstimation(t *testing.T) {
|
||||||
if testing.Short() || os.Getenv("GORACE") != "" || os.Getenv("APPVEYOR") != "" {
|
if testing.Short() || os.Getenv("GORACE") != "" || os.Getenv("APPVEYOR") != "" {
|
||||||
t.Skip("Skipping test in short, race and appveyor mode.")
|
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()
|
t.Parallel()
|
||||||
s := OpenServer(NewConfig())
|
s := OpenServer(NewConfig())
|
||||||
|
|
Loading…
Reference in New Issue