summaryrefslogtreecommitdiff
path: root/test/example
diff options
context:
space:
mode:
Diffstat (limited to 'test/example')
-rw-r--r--test/example/c-api-kitchen-sink.c20
1 files changed, 19 insertions, 1 deletions
diff --git a/test/example/c-api-kitchen-sink.c b/test/example/c-api-kitchen-sink.c
index d3368a6b1..f91733a8d 100644
--- a/test/example/c-api-kitchen-sink.c
+++ b/test/example/c-api-kitchen-sink.c
@@ -1526,10 +1526,28 @@ void test_core() {
BinaryenModulePrint(module);
// Verify it validates
- assert(BinaryenModuleValidate(module));
+ int valid = BinaryenModuleValidate(module);
+ assert(valid);
+
+ // Verify no error occurs when writing out the code to binary.
+ size_t bufferSize = 10 * 1024 * 1024;
+ char* buffer = malloc(bufferSize);
+ size_t written = BinaryenModuleWrite(module, buffer, bufferSize);
+ // We wrote bytes, and we did not reach the end of the buffer (which would
+ // truncate).
+ assert(written > 0 && written < bufferSize);
// Clean up the module, which owns all the objects we created above
BinaryenModuleDispose(module);
+
+ // See we can read the bytes and get a valid module from there.
+ BinaryenModuleRef readModule = BinaryenModuleRead(buffer, written);
+ BinaryenModuleSetFeatures(readModule, BinaryenFeatureAll());
+ valid = BinaryenModuleValidate(readModule);
+ assert(valid);
+ BinaryenModuleDispose(readModule);
+
+ free(buffer);
}
void test_unreachable() {