lapack/gonum: reenable Dgeev and Dgebrd tests for noasm and appengine builds

This commit is contained in:
Vladimir Chalupecky
2018-01-12 12:08:34 +01:00
committed by Vladimír Chalupecký
parent 2768e4f21b
commit f14e8c9f10
2 changed files with 0 additions and 17 deletions

View File

@@ -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 }

View File

@@ -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)
}