Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Avoid issue with DI gen for arrayexprs. #7788

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion numba/tests/gdb/test_array_arg.py
Expand Up @@ -12,7 +12,7 @@ class Test(TestCase):
def test(self):
@njit(debug=True)
def foo(x):
z = 7 + x # break here
z = np.ones_like(x) # break here
return x, z

tmp = np.ones(5)
Expand Down
2 changes: 1 addition & 1 deletion numba/tests/test_gdb_dwarf.py
Expand Up @@ -26,7 +26,7 @@ def _subprocess_test_runner(self, test_mod):
def test_basic(self):
self._subprocess_test_runner('test_basic')

def test_array(self):
def test_array_arg(self):
self._subprocess_test_runner('test_array_arg')

def test_conditional_breakpoint(self):
Expand Down