blob: 0d41d29d668db07eee3cb8ce2db97fd4788b3df5 [file] [log] [blame]
Nicolas Geoffray7cfc8f52019-08-07 10:41:09 +01001/*
2 * Copyright (C) 2019 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17import java.util.ArrayList;
18import java.util.List;
19
20public class Main {
21 private enum TestType {
22 ONE,
23 TWO
24 }
25
26 private static TestType type = TestType.ONE;
27
28 public static void main(String[] args) {
29 float testFloat;
30 switch (type) {
31 case ONE: testFloat = 1000.0f; break;
32 default: testFloat = 5f; break;
33 }
34
35 // Loop enough to potentially trigger OSR.
Orion Hodson2731eb42020-07-24 12:10:12 +010036 List<Integer> placeholderObjects = new ArrayList<Integer>(200_000);
Nicolas Geoffray7cfc8f52019-08-07 10:41:09 +010037 for (int i = 0; i < 200_000; i++) {
Orion Hodson2731eb42020-07-24 12:10:12 +010038 placeholderObjects.add(1024);
Nicolas Geoffray7cfc8f52019-08-07 10:41:09 +010039 }
40
41 if (testFloat != 1000.0f) {
42 throw new Error("Expected 1000.0f, got " + testFloat);
43 }
44 }
45}