Change-Id: Ifc9581ba82a13f507c288282b517ebf8a5f93b4e
Reviewed-on: https://go-review.googlesource.com/c/148058
Run-TryBot: Elias Naur <elias.naur@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Hyang-Ah Hana Kim <hyangah@gmail.com>
import (
"math"
+ "runtime"
"testing"
"time"
)
}
func TestMMUTrace(t *testing.T) {
+ if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
+ t.Skipf("files from outside the package are not available on %s/%s", runtime.GOOS, runtime.GOARCH)
+ }
// Can't be t.Parallel() because it modifies the
// testingOneBand package variable.