-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add GlobalCfg, cli vm-backtrace option #79
Conversation
e4af185
to
db48aad
Compare
#81 will fix these new errors that started appearing due to Rust 1.57 |
8389d8b
to
804a454
Compare
Just realized this PR is likely blocked on FuelLabs/fuel-vm#47 since it will change the way backtraces are enabled in the vm. |
Then lets us leave this unmerged and we will rebase after vm pull request is complete. |
@rakita this is no longer blocked on FuelLabs/fuel-vm#47 btw |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
needs to update to latest vm, the interfaces have been changed.
d8dce1c
to
33a6129
Compare
953f3f9
to
a50b916
Compare
* Data driven test framework * Impl ToString for Test to generate test names * revert unrelated change * Stable * Format * Data test stable * undo change to smt * Use `?` instead of `unwrap` * Reorder dependencies
I dont print memory from backtrace because it is 4mb in size. There is the possibility to compress it and print it in that way, but maybe this is task for another time.
For compression I mean something like:
FirstFlag | NumOfZeroes | NumOfData | data | NumOfZeroes | NumOfData | Data
this compression will give us a lot smaller size of memory assuming a lot of it is zeroed. This can be printed differently but all data would be here.