native,cgo: add test for Dlarfx

This commit is contained in:
Vladimir Chalupecky
2016-06-10 11:22:11 +09:00
parent 51ade4fbe0
commit bbf4f532f9
2 changed files with 8 additions and 0 deletions

View File

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

View File

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