Skip to content

Commit

Permalink
tests: precompile test doesn't needs a host context
Browse files Browse the repository at this point in the history
  • Loading branch information
axic committed Jun 3, 2019
1 parent 1bee034 commit 6bb0eff
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/vmtester/tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,12 +183,11 @@ TEST_F(evmc_vm_test, precompile_test)
destination.bytes[18] = static_cast<uint8_t>(i >> 8);
destination.bytes[19] = static_cast<uint8_t>(i & 0xff);

evmc_context* context = example_host_create_context();
evmc_message msg{
EVMC_CALL, 0, 0, 65536, destination, evmc_address{}, NULL, 0, evmc_uint256be{},
evmc_bytes32{}};

evmc_result result = vm->execute(vm, context, EVMC_MAX_REVISION, &msg, nullptr, 0);
evmc_result result = vm->execute(vm, nullptr, EVMC_MAX_REVISION, &msg, nullptr, 0);

// Validate some constraints

Expand All @@ -214,7 +213,5 @@ TEST_F(evmc_vm_test, precompile_test)

if (result.release)
result.release(&result);

example_host_destroy_context(context);
}
}

0 comments on commit 6bb0eff

Please sign in to comment.