Open ivoysey opened 2 years ago
i removed this test case from the JSON listing in https://github.com/mcoblenz/Obsidian/pull/430. prior to that PR, it would run and produce a bad answer (as above). now it runs out of gas. there are a few reasons this could be happening -- it could actually just be running out of gas; i have recently learned that that output can mean mload
is getting run on an address out of range, too, which is more likely here.
the description of the test is here:
{
"file": "TraceThis.obs",
"expected": "-2438",
"shows_that_we_support": "emitting tracers and default constructors for more complicated nestings of objects. note that this emits 30 log messages between deployment and invocation; they look right but haven't been checked carefully"
}
note that expected
ought to be 1733297
the
TraceThis
test produces-2438
. sketched out in Python,the same test produces
1733297
. i am more confident that the python version is correct, so i think this is a sign of a bug. nothing crashes during a run of that test case, just the answer is wrong.one first step would be to run it on the Fabric framework and see what the answer is there, which i don't know how to do immediately.