From bbf4f532f9586fbbd0e46b7f9267a43f8f80c4d9 Mon Sep 17 00:00:00 2001 From: Vladimir Chalupecky Date: Fri, 10 Jun 2016 11:22:11 +0900 Subject: [PATCH] native,cgo: add test for Dlarfx --- cgo/lapack_test.go | 4 ++++ native/lapack_test.go | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/cgo/lapack_test.go b/cgo/lapack_test.go index b1af2637..4a379a4c 100644 --- a/cgo/lapack_test.go +++ b/cgo/lapack_test.go @@ -56,6 +56,10 @@ func TestDlantr(t *testing.T) { testlapack.DlantrTest(t, impl) } +func TestDlarfx(t *testing.T) { + testlapack.DlarfxTest(t, impl) +} + func TestDpotrf(t *testing.T) { testlapack.DpotrfTest(t, impl) } diff --git a/native/lapack_test.go b/native/lapack_test.go index 77d356cb..b1efbcca 100644 --- a/native/lapack_test.go +++ b/native/lapack_test.go @@ -152,6 +152,10 @@ func TestDlarft(t *testing.T) { testlapack.DlarftTest(t, impl) } +func TestDlarfx(t *testing.T) { + testlapack.DlarfxTest(t, impl) +} + func TestDlartg(t *testing.T) { testlapack.DlartgTest(t, impl) }