Correct stSystemOperationsTest run with programCode.length protection

This commit is contained in:
Faiz Khan 2015-01-20 07:22:17 -06:00
parent 158a86dfd2
commit ddad1508b5
2 changed files with 5 additions and 4 deletions

View File

@ -389,6 +389,11 @@ public class Program {
return;
}
if (programCode.length == 0) {
result = new ProgramResult();
result.setHReturn(new byte[] {});
}
// 4. CREATE THE CONTRACT OUT OF RETURN
byte[] code = result.getHReturn().array();

View File

@ -104,10 +104,6 @@ public class GitHubStateTest {
public void stSystemOperationsTest() throws ParseException {
Set<String> excluded = new HashSet<>();
excluded.add("createNameRegistratorZeroMem2");
excluded.add("createNameRegistratorZeroMem");
excluded.add("createNameRegistratorZeroMemExpansion");
String json = JSONReader.loadJSON("StateTests/stSystemOperationsTest.json");
GitHubJSONTestSuite.runGitHubJsonStateTest(json, excluded);