gnolang / gno

Gno: An interpreted, stack-based Go virtual machine to build succinct and composable apps + Gno.land: a blockchain for timeless code and fair open-source.
https://gno.land/
Other
880 stars 364 forks source link

Remove shared VM memory so tests can run concurrently #1369

Open deelawn opened 10 months ago

deelawn commented 10 months ago

There is a shared memory issue when trying to run multiple txtar tests that start a gnoland node. The goal is to remove this limitation and roll back the changes in PR #1342 that changes them to run serially in order to avoid the shared memory issue. The serial solution will not continue to be sustainable as more tests are added.

thehowl commented 10 months ago

rg -t go '^var' gnovm :)

probably the most important one is var preprocessing in preprocess.go