File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -376,6 +376,12 @@ DebugInfoTest >> testNonExistingVariableIsArgumentRaisesError [
376376DebugInfoTest  >>  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 [
392398DebugInfoTest  >>  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 [
420432DebugInfoTest  >>  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
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments