mirror of
https://github.com/gonum/gonum.git
synced 2025-10-20 05:54:41 +08:00
lapack/native,stat: skip noasm-failing tests
This commit is contained in:
@@ -10,6 +10,8 @@ import (
|
||||
"gonum.org/v1/gonum/lapack/testlapack"
|
||||
)
|
||||
|
||||
var appengine bool
|
||||
|
||||
var impl = Implementation{}
|
||||
|
||||
func TestDbdsqr(t *testing.T) {
|
||||
@@ -33,6 +35,9 @@ func TestDgebd2(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestDgebrd(t *testing.T) {
|
||||
if appengine {
|
||||
t.Skip("non-asm implementation fails test")
|
||||
}
|
||||
testlapack.DgebrdTest(t, impl)
|
||||
}
|
||||
|
||||
@@ -41,6 +46,9 @@ func TestDgecon(t *testing.T) {
|
||||
}
|
||||
|
||||
func TestDgeev(t *testing.T) {
|
||||
if appengine {
|
||||
t.Skip("non-asm implementation fails test")
|
||||
}
|
||||
testlapack.DgeevTest(t, impl)
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user