Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 29bbcf9

Browse files
committed
tests: minor fixes
1 parent 5814327 commit 29bbcf9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/backup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ def test_sigint_handling(self):
11591159
gdb.remove_all_breakpoints()
11601160

11611161
gdb._execute('signal SIGINT')
1162-
# gdb.continue_execution_until_exit()
1162+
gdb.continue_execution_until_error()
11631163

11641164
backup_id = self.show_pb(backup_dir, 'node')[0]['id']
11651165

@@ -1197,7 +1197,7 @@ def test_sigterm_handling(self):
11971197
gdb.remove_all_breakpoints()
11981198

11991199
gdb._execute('signal SIGTERM')
1200-
gdb.continue_execution_until_exit()
1200+
gdb.continue_execution_until_error()
12011201

12021202
backup_id = self.show_pb(backup_dir, 'node')[0]['id']
12031203

@@ -1235,7 +1235,7 @@ def test_sigquit_handling(self):
12351235
gdb.remove_all_breakpoints()
12361236

12371237
gdb._execute('signal SIGQUIT')
1238-
gdb.continue_execution_until_exit()
1238+
gdb.continue_execution_until_error()
12391239

12401240
backup_id = self.show_pb(backup_dir, 'node')[0]['id']
12411241

0 commit comments

Comments
 (0)