diff options
author | Elias Sjögreen <eliassjogreen1@gmail.com> | 2021-09-20 11:38:28 -0700 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2021-09-20 15:42:54 -0700 |
commit | 60b68e63f1045a36496257912ef4f32e716a2440 (patch) | |
tree | d16c27281fb8389f5f8d179b46553d578910ffd7 /test_ffi/tests/integration_tests.rs | |
parent | 7c9c9e5c8389b0a052bf3f953625c4f09cb67eb7 (diff) |
test(ext/ffi): add tests for different parameter and return types (#12158)
Diffstat (limited to 'test_ffi/tests/integration_tests.rs')
-rw-r--r-- | test_ffi/tests/integration_tests.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test_ffi/tests/integration_tests.rs b/test_ffi/tests/integration_tests.rs index 7aa8a0611..62b28d879 100644 --- a/test_ffi/tests/integration_tests.rs +++ b/test_ffi/tests/integration_tests.rs @@ -39,6 +39,13 @@ fn basic() { let expected = "\ something\n\ 579\n\ + 579\n\ + 579\n\ + 579\n\ + 579\n\ + 579\n\ + 579.9119873046875\n\ + 579.912\n\ Correct number of resources\n"; assert_eq!(stdout, expected); assert_eq!(stderr, ""); |