diff --git a/lapack/gonum/appengine_test.go b/lapack/gonum/appengine_test.go deleted file mode 100644 index ad075bd3..00000000 --- a/lapack/gonum/appengine_test.go +++ /dev/null @@ -1,9 +0,0 @@ -// Copyright ©2017 The Gonum Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// +build noasm appengine - -package gonum - -func init() { appengine = true } diff --git a/lapack/gonum/lapack_test.go b/lapack/gonum/lapack_test.go index f9581ae2..48f47361 100644 --- a/lapack/gonum/lapack_test.go +++ b/lapack/gonum/lapack_test.go @@ -10,8 +10,6 @@ import ( "gonum.org/v1/gonum/lapack/testlapack" ) -var appengine bool - var impl = Implementation{} func TestDbdsqr(t *testing.T) { @@ -35,9 +33,6 @@ func TestDgebd2(t *testing.T) { } func TestDgebrd(t *testing.T) { - if appengine { - t.Skip("non-asm implementation fails test") - } testlapack.DgebrdTest(t, impl) } @@ -46,9 +41,6 @@ func TestDgecon(t *testing.T) { } func TestDgeev(t *testing.T) { - if appengine { - t.Skip("non-asm implementation fails test") - } testlapack.DgeevTest(t, impl) }