Tracking merge of dalvik-dev to master

React to move of Base64 in libcore for CTS
  git cherry-pick --no-commit bf4c21cfbd8d8eabd2ec9af0f315d5baff626580

Breakup android.core.tests.libcore based on top level package name
  git cherry-pick --no-commit 45490fa3d469f4a581ecac46ac40c7a4a9af4aaf

DexFile constructor now takes an argument.
  git cherry-pick --no-commit 583eab2ec924dadebd45b1189929f1acec08c7c7

Change-Id: I9b8b717f13fdc9d4499fd9e7a7b488c7537d3f79
diff --git a/tools/utils/VogarUtils.java b/tools/utils/VogarUtils.java
index 06b48c6..c7070a5 100644
--- a/tools/utils/VogarUtils.java
+++ b/tools/utils/VogarUtils.java
@@ -27,6 +27,17 @@
 
 public class VogarUtils {
 
+    public static boolean isVogarKnownFailure(ExpectationStore[] expectationStores,
+            final String testClassName,
+            final String testMethodName) {
+        for (ExpectationStore expectationStore : expectationStores) {
+            if (isVogarKnownFailure(expectationStore, testClassName, testMethodName)) {
+                return true;
+            }
+        }
+        return false;
+    }
+
     public static boolean isVogarKnownFailure(ExpectationStore expectationStore,
             final String testClassName,
             final String testMethodName) {