blob: 4c38f79bbc09a2cff325f658d50801203218de3f [file] [log] [blame]
/*
* Copyright (C) 2008 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.
*/
package dot.junit.opcodes.rsub_int_lit8;
import dot.junit.DxTestCase;
import dot.junit.DxUtil;
import dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_1;
import dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_2;
import dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_3;
import dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_4;
import dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_5;
import dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_6;
import dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_7;
import dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_12;
public class Test_rsub_int_lit8 extends DxTestCase {
/**
* @title normal test - check different values
*/
public void testN1() {
T_rsub_int_lit8_1 t = new T_rsub_int_lit8_1();
assertEquals("Subtest_1 is failed", -4, t.run(8));
assertEquals("Subtest_2 is failed",45, t.run1(15));
assertEquals("Subtest_3 is failed",0, t.run2(20));
assertEquals("Subtest_4 is failed",-35, t.run3(10));
assertEquals("Subtest_5 is failed",-20, t.run4(-50));
assertEquals("Subtest_6 is failed",20, t.run5(-70));
}
/**
* @title normal test - check different values
*/
public void testN2() {
T_rsub_int_lit8_2 t = new T_rsub_int_lit8_2();
assertEquals("Subtest_1 is failed",123, t.run(0));
assertEquals("Subtest_2 is failed",-123, t.run1(0));
assertEquals("Subtest_3 is failed",-15, t.run2(15));
assertEquals("Subtest_4 is failed",85, t.run2(-85));
}
/**
* @title
* 1: a = Integer.MAX_VALUE, b = 0, b-a = -Integer.MAX_VALUE
* 2: a = Byte.MAX_VALUE, b = 0, b-a = -Byte.MAX_VALUE
*/
public void testB1() {
T_rsub_int_lit8_3 t = new T_rsub_int_lit8_3();
assertEquals(-Integer.MAX_VALUE, t.run(Integer.MAX_VALUE));
assertEquals(-Byte.MAX_VALUE, t.run(Byte.MAX_VALUE));
}
/**
* @title
* 1: a = Integer.MIN_VALUE, b = 0, b-a = Integer.MIN_VALUE
* 2: a = Byte.MIN_VALUE, b = 0, b-a = 128
*/
public void testB2() {
T_rsub_int_lit8_3 t = new T_rsub_int_lit8_3();
assertEquals(Integer.MIN_VALUE, t.run(Integer.MIN_VALUE));
assertEquals(128, t.run(Byte.MIN_VALUE));
}
/**
* @title (a = 0, b = 0, b-a = 0)
*/
public void testB3() {
T_rsub_int_lit8_3 t = new T_rsub_int_lit8_3();
assertEquals(0, t.run(0));
}
/**
* @title
* 1: a = 0, b = Byte.MAX_VALUE, b-a = Byte.MAX_VALUE
* 2: a = 1, b = Byte.MAX_VALUE, b-a = 126
* 3: a = -1, b = Byte.MAX_VALUE, b-a = 128
*/
public void testB4() {
T_rsub_int_lit8_4 t = new T_rsub_int_lit8_4();
assertEquals(Byte.MAX_VALUE, t.run(0));
assertEquals(126, t.run(1));
assertEquals(128, t.run(-1));
}
/**
* @title
* 1: a = Integer.MIN_VALUE, b = Byte.MAX_VALUE, b-a = -2147483521
* 2: a = Integer.MAX_VALUE, b = Byte.MAX_VALUE, b-a = -2147483520
* 3: a = Byte.MIN_VALUE, b = Byte.MAX_VALUE, b-a = 255
*/
public void testB5() {
T_rsub_int_lit8_4 t = new T_rsub_int_lit8_4();
assertEquals(-2147483521, t.run(Integer.MIN_VALUE));
assertEquals(-2147483520, t.run(Integer.MAX_VALUE));
assertEquals(255, t.run(Byte.MIN_VALUE));
}
/**
* @title
* 1: a = 0, b = Byte.MIN_VALUE, b-a = Byte.MIN_VALUE
* 2: a = 1, b = Byte.MIN_VALUE, b-a = -129
* 3: a = -1, b = Byte.MIN_VALUE, b-a = -127
*/
public void testB6() {
T_rsub_int_lit8_5 t = new T_rsub_int_lit8_5();
assertEquals(Byte.MIN_VALUE, t.run(0));
assertEquals(-129, t.run(1));
assertEquals(-127, t.run(-1));
}
/**
* @title
* 1: a = Integer.MAX_VALUE, b = Byte.MIN_VALUE, b-a = 2147483521
* 2: a = Integer.MIN_VALUE, b = Byte.MIN_VALUE, b-a = 2147483520
* 3: a = Byte.MAX_VALUE, b = Byte.MIN_VALUE, b-a = -255
*/
public void testB7() {
T_rsub_int_lit8_5 t = new T_rsub_int_lit8_5();
assertEquals(2147483521, t.run(Integer.MAX_VALUE));
assertEquals(2147483520, t.run(Integer.MIN_VALUE));
assertEquals(-255, t.run(Byte.MAX_VALUE));
}
/**
* @title
* 1: a = Integer.MIN_VALUE, b = -1, b-a = Integer.MAX_VALUE
* 2: a = Byte.MIN_VALUE, b = -1, b-a = Byte.MAX_VALUE
*/
public void testB8() {
T_rsub_int_lit8_6 t = new T_rsub_int_lit8_6();
assertEquals(Integer.MAX_VALUE, t.run(Integer.MIN_VALUE));
assertEquals(Byte.MAX_VALUE, t.run(Byte.MIN_VALUE));
}
/**
* @title
* 1: a = Integer.MAX_VALUE, b = -1, b-a = Integer.MIN_VALUE
* 2: a = Byte.MAX_VALUE, b = -1, b-a = Byte.MIN_VALUE
*/
public void testB9() {
T_rsub_int_lit8_6 t = new T_rsub_int_lit8_6();
assertEquals(Integer.MIN_VALUE, t.run(Integer.MAX_VALUE));
assertEquals(Byte.MIN_VALUE, t.run(Byte.MAX_VALUE));
}
/**
* @title
* 1: a = Integer.MIN_VALUE, b = 1, b-a = -Integer.MAX_VALUE
* 2: a = Integer.MAX_VALUE, b = 1, b-a = -2147483646
*/
public void testB10() {
T_rsub_int_lit8_7 t = new T_rsub_int_lit8_7();
assertEquals(-Integer.MAX_VALUE, t.run(Integer.MIN_VALUE));
assertEquals(-2147483646, t.run(Integer.MAX_VALUE));
}
/**
* @title
* 1: a = Byte.MIN_VALUE, b = 1, b-a = 129
* 2: a = Byte.MAX_VALUE, b = 1, b-a = -126
*/
public void testB11() {
T_rsub_int_lit8_7 t = new T_rsub_int_lit8_7();
assertEquals(129, t.run(Byte.MIN_VALUE));
assertEquals(-126, t.run(Byte.MAX_VALUE));
}
/**
* @title (a = 1, b = 1, b-a = 0)
*/
public void testB12() {
T_rsub_int_lit8_7 t = new T_rsub_int_lit8_7();
assertEquals(0, t.run(1));
}
/**
* @constraint A23
* @title number of registers
*/
public void testVFE1() {
load("dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_8", VerifyError.class);
}
/**
* @constraint B1
* @title types of arguments - double, int
*/
public void testVFE2() {
load("dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_9", VerifyError.class);
}
/**
* @constraint B1
* @title types of arguments - long, int
*/
public void testVFE3() {
load("dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_10", VerifyError.class);
}
/**
* @constraint B1
* @title types of arguments - reference, int
*/
public void testVFE4() {
load("dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_11", VerifyError.class);
}
/**
* @constraint B1
* @title Types of arguments - float, int. The verifier checks that ints
* and floats are not used interchangeably.
*/
public void testVFE5() {
load("dot.junit.opcodes.rsub_int_lit8.d.T_rsub_int_lit8_12", VerifyError.class);
}
}