blob: 427f464d09f5f8c85a215224750fab023a6d2c73 (
plain)
1
2
3
4
5
6
7
8
|
from . import utils
class OnlyImportedMemoryTest(utils.BinaryenTestCase):
def test_only_imported_memory(self):
# We should not create a memories section for a file with only an
# imported memory: such a module has no declared memories.
self.roundtrip('only-imported-memory.wasm', debug=False)
|