Skip to content

Commit

Permalink
update reproducible test code.
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
  • Loading branch information
fujitatomoya committed Aug 19, 2024
1 parent 993d5df commit b1216b6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion prover_rclpy/src/rclpy_983.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ def __init__(self):
self.tmr = self.create_timer(1, self.tmr_callback)

def tmr_callback(self):
1/0
#1/0
raise Exception("1")
#raise BaseException("2") # never reach here
print('Timer callback fired')


Expand Down

0 comments on commit b1216b6

Please sign in to comment.