Lines Matching refs:testCases

47     private List<TestCase> testCases;  field in Main
51 testCases = new LinkedList<TestCase>(); in Main()
52 testCases.add(new TestCase("PackedSwitch", "PackedSwitch", "packedSwitch", in Main()
55 testCases.add(new TestCase("b/17790197", "B17790197", "getInt", null, null, 100)); in Main()
56 testCases.add(new TestCase("b/17978759", "B17978759", "test", null, new VerifyError(), in Main()
58 testCases.add(new TestCase("FloatBadArgReg", "FloatBadArgReg", "getInt", in Main()
60 testCases.add(new TestCase("negLong", "negLong", "negLong", null, null, 122142L)); in Main()
61 testCases.add(new TestCase("sameFieldNames", "sameFieldNames", "getInt", null, null, 7)); in Main()
62 testCases.add(new TestCase("b/18380491", "B18380491ConcreteClass", "foo", in Main()
64 testCases.add(new TestCase("invoke-super abstract", "B18380491ConcreteClass", "foo", in Main()
66 testCases.add(new TestCase("BadCaseInOpRegRegReg", "BadCaseInOpRegRegReg", "getInt", null, in Main()
68 testCases.add(new TestCase("CmpLong", "CmpLong", "run", null, null, 0)); in Main()
69 testCases.add(new TestCase("FloatIntConstPassing", "FloatIntConstPassing", "run", null, in Main()
71 testCases.add(new TestCase("b/18718277", "B18718277", "getInt", null, null, 0)); in Main()
72 testCases.add(new TestCase("b/18800943 (1)", "B18800943_1", "n_a", null, new VerifyError(), in Main()
74 testCases.add(new TestCase("b/18800943 (2)", "B18800943_2", "n_a", null, new VerifyError(), in Main()
76 testCases.add(new TestCase("MoveExc", "MoveExc", "run", null, new ArithmeticException(), in Main()
78 testCases.add(new TestCase("MoveExceptionOnEntry", "MoveExceptionOnEntry", in Main()
80 testCases.add(new TestCase("EmptySparseSwitch", "EmptySparseSwitch", "run", null, null, in Main()
82 testCases.add(new TestCase("b/20224106", "B20224106", "run", null, new VerifyError(), in Main()
84 testCases.add(new TestCase("b/21873167", "B21873167", "test", null, null, null)); in Main()
85 testCases.add(new TestCase("b/21614284", "B21614284", "test", new Object[] { null }, in Main()
87 testCases.add(new TestCase("b/21902684", "B21902684", "test", null, null, null)); in Main()
88 testCases.add(new TestCase("b/21863767", "B21863767", "run", null, null, in Main()
90 testCases.add(new TestCase("b/21886894", "B21886894", "test", null, new VerifyError(), in Main()
92 testCases.add(new TestCase("b/22080519", "B22080519", "run", null, in Main()
94 testCases.add(new TestCase("b/21645819", "B21645819", "run", new Object[] { null }, in Main()
96 testCases.add(new TestCase("b/22244733", "B22244733", "run", new Object[] { "abc" }, in Main()
98 testCases.add(new TestCase("b/22331663", "B22331663", "run", new Object[] { false }, in Main()
100 testCases.add(new TestCase("b/22331663 (pass)", "B22331663Pass", "run", in Main()
102 testCases.add(new TestCase("b/22331663 (fail)", "B22331663Fail", "run", in Main()
104 testCases.add(new TestCase("b/22881413", "B22881413", "run", null, null, null)); in Main()
105 testCases.add(new TestCase("b/20843113", "B20843113", "run", null, null, null)); in Main()
106 testCases.add(new TestCase("b/23201502 (float)", "B23201502", "runFloat", null, in Main()
108 testCases.add(new TestCase("b/23201502 (double)", "B23201502", "runDouble", null, in Main()
113 for (TestCase tc : testCases) { in runTests()