compiler/tests/PPCInliningVisitorTest.st
changeset 459 4751c407bb40
parent 452 9f4558b3be66
child 460 87a3d30ab570
--- a/compiler/tests/PPCInliningVisitorTest.st	Sun May 10 06:28:36 2015 +0100
+++ b/compiler/tests/PPCInliningVisitorTest.st	Tue May 12 01:24:03 2015 +0100
@@ -108,15 +108,14 @@
 
     result := visitor visit: node.
         
-    ((Smalltalk respondsTo:#isSmalltalkX) and:[ Smalltalk isSmalltalkX ]) ifTrue:
-    [  
-        self skip: 'skipped test, inlining of pluggable nodes not supported!!'.
+    ((Smalltalk respondsTo:#isSmalltalkX) and:[ Smalltalk isSmalltalkX ]) ifTrue:[  
+        self skipIf: true description: 'skipped test, inlining of pluggable nodes not supported!!'.
     ].
 
     self assert: result children first type: PPCPluggableNode.
     self assert: result children first isMarkedForInline.
 
-    "Modified: / 23-04-2015 / 12:18:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 01-05-2015 / 14:22:05 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 testSequenceInline