Skip to content
Snippets Groups Projects
Commit 2650735e authored by Tomas Stupka's avatar Tomas Stupka
Browse files

generated test output

parent 6a4b4906
No related branches found
No related tags found
No related merge requests found
......@@ -72277,6 +72277,25 @@ Error: unexpected '}' in "{ .Internal(strrep(, '') }"
[1] ""
 
 
##com.oracle.truffle.r.test.builtins.TestBuiltin_strsplit.testStrSplit#
#strsplit('a[1][1]=x11&a[1][2]=x12', '[[]')
[[1]]
[1] "a" "1]" "1]=x11&a" "1]" "2]=x12"
##com.oracle.truffle.r.test.builtins.TestBuiltin_strsplit.testStrSplit#
#strsplit('a[1][1]=x11&a[1][2]=x12', '[][]')
[[1]]
[1] "a" "1" "" "1" "=x11&a" "1" "" "2"
[9] "=x12"
##com.oracle.truffle.r.test.builtins.TestBuiltin_strsplit.testStrSplit#
#strsplit('a[1][1]=x11&a[1][2]=x12', ']')
[[1]]
[1] "a[1" "[1" "=x11&a[1" "[2" "=x12"
##com.oracle.truffle.r.test.builtins.TestBuiltin_strsplit.testStrSplit#
#strsplit('foo bar baz', '[f z]', perl=TRUE)
[[1]]
......@@ -85461,6 +85480,12 @@ In readLines(zz, 2, warn = T, skipNul = F) :
Warning message:
In open.connection(con, "rb") : connection is already open
 
##com.oracle.truffle.r.test.library.base.TestConnections.testSeek#
#f1 <- file(open='w+b', encoding='UTF-8'); writeBin(charToRaw("abcd"), f1); seek(f1); seek(f1,0); seek(f1)
[1] 4
[1] 4
[1] 0
##com.oracle.truffle.r.test.library.base.TestConnections.testSeekTextConnection#
#{ zz <- textConnection("Hello, World!"); res <- isSeekable(zz); close(zz); res }
[1] FALSE
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