summaryrefslogtreecommitdiff
path: root/test/554-jit-profile-file/src-multidex/OtherDex.java
diff options
context:
space:
mode:
author Nicolas Geoffray <ngeoffray@google.com> 2015-12-02 22:44:52 +0000
committer Nicolas Geoffray <ngeoffray@google.com> 2015-12-02 23:00:53 +0000
commit9fdb129b90c9a985f606f9d95627b4852171dc11 (patch)
treec7b1e1da1450f61a504cdf6e21cda62541e93ee7 /test/554-jit-profile-file/src-multidex/OtherDex.java
parent57989d6f7292155f4d91ce423cede17d04dd9343 (diff)
Revert "Enable profiled guided compilation in dex2oat"
Test has flakes: +art F 30865 30865 art/runtime/java_vm_ext.cc:466] JNI DETECTED ERROR IN APPLICATION: input is not valid Modified UTF-8: illegal start byte 0x80 +art F 30865 30865 art/runtime/java_vm_ext.cc:466] string: '��gy�' +art F 30865 30865 art/runtime/java_vm_ext.cc:466] input: '<0x80> 0xd8 0x67 0x79 0x8e 0x7f' +art F 30865 30865 art/runtime/java_vm_ext.cc:466] in call to NewStringUTF +art F 30865 30865 art/runtime/java_vm_ext.cc:466] from java.lang.String Main.getProfileInfoDump(java.lang.String, java.lang.Class, java.lang.Class) This reverts commit 27e17fd81cc30e16e86c9c15498cae7f920c9dfe. Change-Id: Id224b5970c3620c4c71fc0d39ed4a2e4755e5f29
Diffstat (limited to 'test/554-jit-profile-file/src-multidex/OtherDex.java')
-rw-r--r--test/554-jit-profile-file/src-multidex/OtherDex.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/554-jit-profile-file/src-multidex/OtherDex.java b/test/554-jit-profile-file/src-multidex/OtherDex.java
deleted file mode 100644
index 51644db5aa..0000000000
--- a/test/554-jit-profile-file/src-multidex/OtherDex.java
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * Copyright (C) 2015 The Android Open Source Project
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import java.util.HashMap;
-
-public class OtherDex {
- public void coldMethod() {
- hotMethod();
- }
-
- public String hotMethod() {
- HashMap<String, String> map = new HashMap<String, String>();
- for (int i = 0; i < 10; i++) {
- map.put("" + i, "" + i + 1);
- }
- return map.get("1");
- }
-}