Skip to content

Commit db606bb

Browse files
committed
Fix DebugInfoTest
1 parent a65ddaa commit db606bb

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/DebugInfo-Tests/DebugInfoTest.class.st

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,12 @@ DebugInfoTest >> testNonExistingVariableIsArgumentRaisesError [
376376
DebugInfoTest >> testNotStopAtAllButFirstBytecodeOfOptimizedSend [
377377

378378
| debugInfo methodToTest send todoPCs |
379+
380+
"This test is only valid when shouldStopAt: does not stop at
381+
- compiler only inserted stores
382+
- closure creations"
383+
self skip.
384+
379385
methodToTest := self class >> #methodWithOptimizedSend.
380386
debugInfo := self newDebugInfoFor: methodToTest.
381387

@@ -392,6 +398,12 @@ DebugInfoTest >> testNotStopAtAllButFirstBytecodeOfOptimizedSend [
392398
DebugInfoTest >> testNotStopAtConstantBlockCreation [
393399

394400
| debugInfo methodToTest blockNode blockCreationPC |
401+
402+
"This test is only valid when shouldStopAt: does not stop at
403+
- compiler only inserted stores
404+
- closure creations"
405+
self skip.
406+
395407
methodToTest := self class >> #methodWithConstantBlockReturn.
396408
debugInfo := self newDebugInfoFor: methodToTest.
397409

@@ -420,6 +432,12 @@ DebugInfoTest >> testNotStopAtDynamicArrayCreation [
420432
DebugInfoTest >> testNotStopAtFullBlockCreation [
421433

422434
| debugInfo methodToTest blockNode blockCreationPCs |
435+
436+
"This test is only valid when shouldStopAt: does not stop at
437+
- compiler only inserted stores
438+
- closure creations"
439+
self skip.
440+
423441
methodToTest := self class >> #methodWithFullBlockReturn.
424442
debugInfo := self newDebugInfoFor: methodToTest.
425443

0 commit comments

Comments
 (0)