File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
lldb/test/API/functionalities/process_save_core_minidump Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 7
7
from lldbsuite .test .decorators import *
8
8
from lldbsuite .test .lldbtest import *
9
9
from lldbsuite .test import lldbutil
10
- from dataclass import dataclass
11
10
12
11
13
12
class AddressRange :
@@ -52,10 +51,10 @@ def validate_regions_saved_correctly(
52
51
# Validate we can't read the original_region
53
52
core_process .ReadMemory (
54
53
expected_invalid_region .begin ,
55
- expected_invalid_region .end - expected_invalid_region .end ,
54
+ expected_invalid_region .end - expected_invalid_region .begin ,
56
55
error ,
57
56
)
58
- self .assertTrue (error .Success (), error .GetCString ())
57
+ self .assertTrue (error .Fail (), error .GetCString ())
59
58
60
59
def test_saving_sub_memory_range (self ):
61
60
"""
You can’t perform that action at this time.
0 commit comments