Skip to content

Commit

Permalink
Update some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanmon committed Nov 19, 2024
1 parent c09058d commit 66d0f63
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ TEST_F(AvmCastTests, indirectAddrTruncationU64ToU8)

TEST_F(AvmCastTests, indirectAddrWrongResolutionU64ToU8)
{
// TODO(#9131): Re-enable as part of #9131
// TODO(#9995): Re-enable as part of #9995
GTEST_SKIP();
// Indirect addresses. src:5 dst:6
// Direct addresses. src:10 dst:11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ TEST_F(AvmMemOpcodeTests, uninitializedValueMov)

TEST_F(AvmMemOpcodeTests, indUninitializedValueMov)
{
// TODO(#9131): Re-enable once we have error handling on wrong address resolution
// TODO(#9995): Re-enable once we have error handling on wrong address resolution
GTEST_SKIP();

trace_builder.op_set(0, 1, 3, AvmMemoryTag::U32);
Expand All @@ -244,7 +244,7 @@ TEST_F(AvmMemOpcodeTests, indUninitializedValueMov)

TEST_F(AvmMemOpcodeTests, indUninitializedAddrMov)
{
// TODO(#9131): Re-enable once we have error handling on wrong address resolution
// TODO(#9995): Re-enable once we have error handling on wrong address resolution
GTEST_SKIP();

trace_builder.op_set(0, 1, 3, AvmMemoryTag::U32);
Expand All @@ -268,7 +268,7 @@ TEST_F(AvmMemOpcodeTests, indirectMov)

TEST_F(AvmMemOpcodeTests, indirectMovInvalidAddressTag)
{
// TODO(#9131): Re-enable once we have error handling on wrong address resolution
// TODO(#9995): Re-enable once we have error handling on wrong address resolution
GTEST_SKIP();

trace_builder.op_set(0, 15, 100, AvmMemoryTag::U32);
Expand Down Expand Up @@ -369,7 +369,7 @@ TEST_F(AvmMemOpcodeTests, indirectSet)

TEST_F(AvmMemOpcodeTests, indirectSetWrongTag)
{
// TODO(#9131): Re-enable once we have error handling on wrong address resolution
// TODO(#9995): Re-enable once we have error handling on wrong address resolution
GTEST_SKIP();

trace_builder.op_set(0, 100, 10, AvmMemoryTag::U8); // The address 100 has incorrect tag U8.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ TEST_F(AvmSliceTests, indirectTwoCallsOverlap)

TEST_F(AvmSliceTests, indirectFailedResolution)
{
// TODO(#9131): Re-enable as part of #9131
// TODO(#9995): Re-enable as part of #9995
GTEST_SKIP();

gen_trace_builder({ 2, 3, 4, 5, 6 });
Expand Down

0 comments on commit 66d0f63

Please sign in to comment.