diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-10-06 00:27:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 00:27:05 +0200 |
commit | 3faf75aa883647dfa1f3be2bc13cf7bc463d92e1 (patch) | |
tree | edb141ebe411a348abe068c014828606e6614d93 /test_ffi/tests/integration_tests.rs | |
parent | 58bb63f355085bc8dbd845f1cae688e5ce453eec (diff) |
feat(ext/ffi): add support for buffer arguments (#12335)
This commit adds support for passing buffer arguments across
FFI boundary.
Co-authored-by: eliassjogreen <eliassjogreen1@gmail.com>
Co-authored-by: Bert Belder <bertbelder@gmail.com>
Diffstat (limited to 'test_ffi/tests/integration_tests.rs')
-rw-r--r-- | test_ffi/tests/integration_tests.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test_ffi/tests/integration_tests.rs b/test_ffi/tests/integration_tests.rs index 0b2eae854..0ae395da8 100644 --- a/test_ffi/tests/integration_tests.rs +++ b/test_ffi/tests/integration_tests.rs @@ -38,6 +38,7 @@ fn basic() { assert!(output.status.success()); let expected = "\ something\n\ + [1, 2, 3, 4, 5, 6, 7, 8]\n\ 579\n\ 579\n\ 579\n\ |