diff graal/com.oracle.graal.truffle.test/sl/TestSlowPath01.sl @ 17405:04d6bb76cfb3

Truffle: update callUntilOptimized to wait for the compilation and call it once optimized.
author Christian Humer <christian.humer@gmail.com>
date Thu, 09 Oct 2014 17:25:59 +0200
parents 9f001294893d
children
line wrap: on
line diff
--- a/graal/com.oracle.graal.truffle.test/sl/TestSlowPath01.sl	Thu Oct 09 17:25:59 2014 +0200
+++ b/graal/com.oracle.graal.truffle.test/sl/TestSlowPath01.sl	Thu Oct 09 17:25:59 2014 +0200
@@ -6,6 +6,6 @@
     testSlowPath01();
 }
 function main() {
-    waitForOptimization(callUntilOptimized(test1));
+    callUntilOptimized(test1);
     assertTrue(isOptimized(test1), "inlinableFunction must be compiled properly");
 }