Disable running on 10.0.0 until we have status figured out

Bug: 144966342
Change-Id: I030ab7fd591415e459ba08fbc1baea6f896712ec
diff --git a/tools/test.py b/tools/test.py
index 5a8d29f..9925dea 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -156,6 +156,11 @@
 
 def Main():
   (options, args) = ParseOptions()
+  # See b/144966342
+  if options.dex_vm == '10.0.0':
+    print 'Running on 10.0.0 is temporarily disabled, see b/144966342'
+    return 0
+
   if utils.is_bot():
     gradle.RunGradle(['--no-daemon', 'clean'])
 
@@ -434,7 +439,6 @@
         test = href.replace('.html','').replace('#', '.').replace('.classMethod', '')
         failing.add(test)
   return list(failing)
-
 if __name__ == '__main__':
   return_code = Main()
   if return_code != 0: