@@ -56,7 +56,6 @@ def verify_stackFrame(self, frame_idx, stackFrame):
56
56
"frame #%i line %i == %i" % (frame_idx , frame_line , expected_line ),
57
57
)
58
58
59
- @skipIfWindows
60
59
def test_stackTrace (self ):
61
60
"""
62
61
Tests the 'stackTrace' packet and all its variants.
@@ -202,7 +201,6 @@ def test_stackTrace(self):
202
201
0 , len (stackFrames ), "verify zero frames with startFrame out of bounds"
203
202
)
204
203
205
- @skipIfWindows
206
204
def test_functionNameWithArgs (self ):
207
205
"""
208
206
Test that the stack frame without a function name is given its pc in the response.
@@ -217,7 +215,6 @@ def test_functionNameWithArgs(self):
217
215
frame = self .get_stackFrames ()[0 ]
218
216
self .assertEqual (frame ["name" ], "recurse(x=1)" )
219
217
220
- @skipIfWindows
221
218
def test_StackFrameFormat (self ):
222
219
"""
223
220
Test the StackFrameFormat.
@@ -239,7 +236,7 @@ def test_StackFrameFormat(self):
239
236
self .assertEqual (frame ["name" ], "recurse(x=1)" )
240
237
241
238
frame = self .get_stackFrames (format = {"parameters" : False , "line" : True })[0 ]
242
- self .assertEqual (frame ["name" ], "main.c:6 :5 recurse" )
239
+ self .assertEqual (frame ["name" ], "main.c:5 :5 recurse" )
243
240
244
241
frame = self .get_stackFrames (format = {"parameters" : False , "module" : True })[0 ]
245
242
self .assertEqual (frame ["name" ], "a.out recurse" )
0 commit comments