vmBitwiseLogicOperationTest pass

This commit is contained in:
alon muroch 2014-12-01 11:49:23 +01:00
parent 03a9afabfa
commit 7c0a6fb65d
2 changed files with 3 additions and 4 deletions

View File

@ -60,10 +60,10 @@ public enum OpCode {
OR(0x17, 2), OR(0x17, 2),
/** (0x18) Bitwise XOR operation */ /** (0x18) Bitwise XOR operation */
XOR(0x18, 2), XOR(0x18, 2),
/** (0x19) Retrieve single byte from word */
BYTE(0x19, 2),
/** (0x1a) Bitwise NOT operationr */ /** (0x1a) Bitwise NOT operationr */
NOT(0x1a, 1), NOT(0x19, 1),
/** (0x19) Retrieve single byte from word */
BYTE(0x1a, 2),
/* Cryptographic Operations */ /* Cryptographic Operations */

View File

@ -18,7 +18,6 @@ public class GitHubVMTest {
} }
@Test // testing full suite @Test // testing full suite
@Ignore
public void testBitwiseLogicOperationFromGitHub() throws ParseException { public void testBitwiseLogicOperationFromGitHub() throws ParseException {
String json = JSONReader.loadJSON("VMTests/vmBitwiseLogicOperationTest.json"); String json = JSONReader.loadJSON("VMTests/vmBitwiseLogicOperationTest.json");