Skip to content

Commit

Permalink
[ir] [bug] Skip test_template (#2444)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-ye authored Jun 20, 2021
1 parent 48eb447 commit c95da2d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/python/test_function.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import pytest

import taichi as ti


Expand Down Expand Up @@ -148,7 +150,8 @@ def run(self) -> ti.i32:
assert x[None] == 0


@ti.test(experimental_real_function=True, exclude=[ti.opengl, ti.cc])
@pytest.mark.skip(reason='https://github.com/taichi-dev/taichi/issues/2442')
@ti.test(experimental_real_function=True, debug=True)
def test_templates():
x = ti.field(ti.i32, shape=())
y = ti.field(ti.i32, shape=())
Expand Down

0 comments on commit c95da2d

Please sign in to comment.