1 /*
2  * Copyright (C) 2008 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 
17 package dot.junit.opcodes.move;
18 
19 import dot.junit.DxTestCase;
20 import dot.junit.DxUtil;
21 import dot.junit.opcodes.move.d.T_move_1;
22 
23 public class Test_move extends DxTestCase {
24     /**
25      * @title test move functionality
26      */
testN1()27     public void testN1() {
28         assertTrue(T_move_1.run());
29     }
30 
31 
32     /**
33      * @constraint A23
34      * @title number of registers - src is not valid
35      */
testVFE1()36     public void testVFE1() {
37         load("dot.junit.opcodes.move.d.T_move_2", VerifyError.class);
38     }
39 
40     /**
41      * @constraint A23
42      * @title number of registers - dst is not valid
43      */
testVFE2()44     public void testVFE2() {
45         load("dot.junit.opcodes.move.d.T_move_3", VerifyError.class);
46     }
47 
48     /**
49      * @constraint B1
50      * @title src register contains reference
51      */
testVFE3()52     public void testVFE3() {
53         load("dot.junit.opcodes.move.d.T_move_4", VerifyError.class);
54     }
55 
56     /**
57      * @constraint B1
58      * @title src register contains wide
59      */
testVFE4()60     public void testVFE4() {
61         load("dot.junit.opcodes.move.d.T_move_5", VerifyError.class);
62     }
63 
64     /**
65      * @constraint B1
66      * @title src register is a part of reg pair
67      */
testVFE5()68     public void testVFE5() {
69         load("dot.junit.opcodes.move.d.T_move_6", VerifyError.class);
70     }
71 
72     /**
73      * @constraint B18
74      * @title When writing to a register that is one half of a
75      * register pair, but not touching the other half, the old register pair gets broken
76      * up, and the other register involved in it becomes undefined.
77      */
testVFE6()78     public void testVFE6() {
79         load("dot.junit.opcodes.move.d.T_move_7", VerifyError.class);
80     }
81 
82 }
83