Skip to content

Commit

Permalink
Merge pull request numba#7788 from stuartarchibald/fix/failing_debug_…
Browse files Browse the repository at this point in the history
…line_test

Avoid issue with DI gen for arrayexprs.
  • Loading branch information
stuartarchibald authored and esc committed Jan 26, 2022
1 parent f22816d commit 0a4e6c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 0a4e6c9

Please sign in to comment.