Home | History | Annotate | Download | only in move_object
      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_object;
     18 
     19 import dot.junit.DxTestCase;
     20 import dot.junit.DxUtil;
     21 import dot.junit.opcodes.move_object.d.T_move_object_1;
     22 
     23 public class Test_move_object extends DxTestCase {
     24     /**
     25      * @title tests move-object functionality
     26      */
     27     public void testN1() {
     28         T_move_object_1 t = new T_move_object_1();
     29         assertEquals(t.run(), t);
     30     }
     31 
     32 
     33     /**
     34      * @constraint A23
     35      * @title  number of registers - src is not valid
     36      */
     37     public void testVFE1() {
     38         load("dot.junit.opcodes.move_object.d.T_move_object_2", VerifyError.class);
     39     }
     40 
     41     /**
     42      * @constraint A23
     43      * @title number of registers - dst is not valid
     44      */
     45     public void testVFE2() {
     46         load("dot.junit.opcodes.move_object.d.T_move_object_3", VerifyError.class);
     47     }
     48 
     49     /**
     50      * @constraint B1
     51      * @title src register contains integer
     52      */
     53     public void testVFE3() {
     54         load("dot.junit.opcodes.move_object.d.T_move_object_4", VerifyError.class);
     55     }
     56 
     57     /**
     58      * @constraint B1
     59      * @title src register contains wide
     60      */
     61     public void testVFE4() {
     62         load("dot.junit.opcodes.move_object.d.T_move_object_5", VerifyError.class);
     63     }
     64 
     65     /**
     66      * @constraint B1
     67      * @title src register is a part of reg pair
     68      */
     69     public void testVFE5() {
     70         load("dot.junit.opcodes.move_object.d.T_move_object_6", VerifyError.class);
     71     }
     72 
     73     /**
     74      * @constraint B18
     75      * @title When writing to a register that is one half of a
     76      * register pair, but not touching the other half, the old register pair gets broken
     77      * up, and the other register involved in it becomes undefined.
     78      */
     79     public void testVFE6() {
     80         load("dot.junit.opcodes.move_object.d.T_move_object_7", VerifyError.class);
     81     }
     82 }
     83