Skip to content

Commit

Permalink
test: Extend tests for OperandStack
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Sep 16, 2020
1 parent db71b63 commit cfad111
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/unittests/stack_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ TEST(operand_stack, small_with_locals)
EXPECT_EQ(stack.local(4).i64, 0xc4);

EXPECT_EQ(stack.pop().i64, 0xff);
EXPECT_EQ(stack.size(), 0);
EXPECT_EQ(stack.local(0).i64, 0xc0);
EXPECT_EQ(stack.local(1).i64, 0xc1);
EXPECT_EQ(stack.local(2).i64, 0xc2);
Expand Down

0 comments on commit cfad111

Please sign in to comment.