From e947d6c6e3d47a2b21cfdfe52fa0afc23bab75e6 Mon Sep 17 00:00:00 2001 From: Vladimir Chalupecky Date: Mon, 13 Jun 2016 12:08:57 +0900 Subject: [PATCH] cgo: add test for Dorghr --- cgo/lapack_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cgo/lapack_test.go b/cgo/lapack_test.go index 95e5c169..b1accdde 100644 --- a/cgo/lapack_test.go +++ b/cgo/lapack_test.go @@ -143,6 +143,10 @@ func TestDorgbr(t *testing.T) { testlapack.DorgbrTest(t, blockedTranslate{impl}) } +func TestDorghr(t *testing.T) { + testlapack.DorghrTest(t, impl) +} + func TestDormqr(t *testing.T) { testlapack.Dorm2rTest(t, blockedTranslate{impl}) }