Skip to content
Snippets Groups Projects
Commit c4f22c62 authored by Florian Angerer's avatar Florian Angerer
Browse files

Added missing TruffleBoundary and added corresponding tests.

parent f57136b9
No related branches found
No related tags found
No related merge requests found
......@@ -79,4 +79,13 @@ rffi.inlined_length(expr[[1]])
rffi.parseVector('1+2')
rffi.parseVector('.*/-')
rffi.parseVector('1+')
\ No newline at end of file
rffi.parseVector('1+')
# preserve and release object
# using loop to trigger compilation
for(i in seq(5000)) {
rffi.preserve_object()
}
for(i in seq(5000)) {
rffi.release_object()
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment