Skip to content
Snippets Groups Projects
Commit fd8a7c91 authored by stepan's avatar stepan
Browse files

Regenerate tests expected output

parent d5a955e5
No related branches found
No related tags found
No related merge requests found
......@@ -11509,6 +11509,27 @@ hello
##com.oracle.truffle.r.test.builtins.TestBuiltin_cat.testCat#
#{ m <- matrix(as.character(1:6), nrow=2) ; cat(m) }
1 2 3 4 5 6
##com.oracle.truffle.r.test.builtins.TestBuiltin_cat.testCatUnsupportedArgs#
#cat(list(), expression(), sep='this-should-be-ok')
this-should-be-ok
##com.oracle.truffle.r.test.builtins.TestBuiltin_cat.testCatUnsupportedArgs#
#cat(list(1,2,3))
Error in cat(list(...), file, sep, fill, labels, append) :
argument 1 (type 'list') cannot be handled by 'cat'
##com.oracle.truffle.r.test.builtins.TestBuiltin_cat.testCatUnsupportedArgs#
#cat(parse(text='42'))
Error in cat(list(...), file, sep, fill, labels, append) :
argument 1 (type 'expression') cannot be handled by 'cat'
##com.oracle.truffle.r.test.builtins.TestBuiltin_cat.testCatUnsupportedArgs#
#cat(quote(3+3))
Error in cat(list(...), file, sep, fill, labels, append) :
argument 1 (type 'language') cannot be handled by 'cat'
##com.oracle.truffle.r.test.builtins.TestBuiltin_cat.testCatUnsupportedArgs#
#cat(quote(a))
a
##com.oracle.truffle.r.test.builtins.TestBuiltin_cat.testCatVarargs#
#{ f <- function(...) {cat(...,sep="-")}; f("a") }
a
......@@ -64027,6 +64048,18 @@ $names
[,1]
[1,] FALSE
 
##com.oracle.truffle.r.test.library.base.TestSimpleComparison.testOther#
#{ quote(a) == quote(b) }
[1] FALSE
##com.oracle.truffle.r.test.library.base.TestSimpleComparison.testOther#
#{ quote(a+b) == quote(a+b) }
[1] TRUE
##com.oracle.truffle.r.test.library.base.TestSimpleComparison.testOther#
#{ quote(a+b) == quote(b+b) }
[1] FALSE
##com.oracle.truffle.r.test.library.base.TestSimpleComparison.testOther#
#{ stdin() == 0L }
[1] TRUE
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