Skip to content

Commit

Permalink
feat: add fac.wast
Browse files Browse the repository at this point in the history
  • Loading branch information
bhelx committed Oct 15, 2023
1 parent de9c79f commit 467f94e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,15 @@
align.wast,
int_literals.wast,
int_exprs.wast,
endianness.wast</wastToProcess>
endianness.wast,
fac.wast</wastToProcess>
<orderedWastToProcess>memory_grow.wast,
memory_size.wast,
stack.wast</orderedWastToProcess>
<excludedTests>
<!-- Assertion failures -->
SpecV1MemoryGrowTest.test67,
SpecV1FacTest.test4,
<!-- call indirect failures -->
SpecV1MemoryGrowTest.test64,
SpecV1MemoryGrowTest.test65,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ public CompilationUnit generate(
// }
break;
default:
log.info("command type not yet supported " + cmd.getType());
// TODO we need to implement all of these
log.info("TODO: command type not yet supported " + cmd.getType());
// throw new IllegalArgumentException(
// "command type not yet supported " +
// cmd.getType());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ public enum CommandType {
ASSERT_MALFORMED("assert_malformed"),
@JsonProperty("assert_uninstantiable")
ASSERT_UNINSTANTIABLE("assert_uninstantiable"),
@JsonProperty("assert_exhaustion")
ASSERT_EXHAUSTION("assert_exhaustion"),
@JsonProperty("action")
ACTION("action");

Expand Down

0 comments on commit 467f94e

Please sign in to comment.