Skip to content

Commit 5860065

Browse files
kshyattKatharine Hyatt
authored andcommitted
Don't test nonworking stuff
1 parent 0eb8223 commit 5860065

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

test/orthnull.jl

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ for T in (BLASFloats..., GenericFloats...), n in (37, m, 63)
2727
end
2828
end
2929
if !is_buildkite
30-
TestSuite.test_orthnull(T, (m, n))
31-
AT = Diagonal{T, Vector{T}}
32-
TestSuite.test_orthnull(AT, m)
30+
if T BLASFloats # no qr_null or lq_null for GenericFloats
31+
TestSuite.test_orthnull(T, (m, n))
32+
end
33+
#AT = Diagonal{T, Vector{T}}
34+
#TestSuite.test_orthnull(AT, m) # not supported
3335
end
3436
end

0 commit comments

Comments
 (0)