Force OSR compilation on all compilations.

Temporary change to trigger tests. Will revert once enough
builds have been triggered.

Also disable checker tests and $noinline$ checks.

bug: b/66752868
Test: test.py
Change-Id: Idee456fea4c9e43dfc52e766bbd98408e0bbd4e8
diff --git a/compiler/optimizing/inliner.cc b/compiler/optimizing/inliner.cc
index 4d846fa..768a6bf 100644
--- a/compiler/optimizing/inliner.cc
+++ b/compiler/optimizing/inliner.cc
@@ -171,8 +171,8 @@
           // Tests prevent inlining by having $noinline$ in their method names.
           if (callee_name.find("$noinline$") == std::string::npos) {
             if (!TryInline(call)) {
-              bool should_have_inlined = (callee_name.find("$inline$") != std::string::npos);
-              CHECK(!should_have_inlined) << "Could not inline " << callee_name;
+//              bool should_have_inlined = (callee_name.find("$inline$") != std::string::npos);
+//              CHECK(!should_have_inlined) << "Could not inline " << callee_name;
             }
           }
         } else {