Skip to content

Commit

Permalink
Add test that should segfault on oneAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Aug 15, 2023
1 parent 42402da commit 1c4dd85
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/test_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,8 @@ def test_create_element(cell, degree, family, variant):
except RuntimeError as e:
if len(e.args) == 0 or "dgesv" in e.args[0]:
raise e


def test_create_high_degree_lagrange():
element = basix.create_element(
basix.ElementFamily.P, basix.CellType.hexahedron, 7, basix.LagrangeVariant.gll_isaac)

0 comments on commit 1c4dd85

Please sign in to comment.