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

generated test output

parent 1be8c010
No related branches found
No related tags found
No related merge requests found
......@@ -25383,6 +25383,61 @@ attr(,"useBytes")
[1] TRUE
 
 
##com.oracle.truffle.r.test.builtins.TestBuiltin_gregexpr.testRegExpr#Output.IgnoreErrorMessage#
#gregexpr('(', 'abc()', fixed = FALSE)
Error in gregexpr("(", "abc()", fixed = FALSE) :
invalid regular expression '(', reason 'Missing ')''
##com.oracle.truffle.r.test.builtins.TestBuiltin_gregexpr.testRegExpr#
#gregexpr('(', 'abc()', fixed = TRUE)
[[1]]
[1] 4
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_gregexpr.testRegExpr#
#gregexpr(')', 'abc()', fixed = FALSE)
[[1]]
[1] 5
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_gregexpr.testRegExpr#
#gregexpr(')', 'abc()', fixed = TRUE)
[[1]]
[1] 5
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_gregexpr.testRegExpr#
#gregexpr('\\(', 'abc()', fixed = FALSE)
[[1]]
[1] 4
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_gregexpr.testRegExpr#
#gregexpr('\\)', 'abc()', fixed = FALSE)
[[1]]
[1] 5
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_gregexpr.testRegExpr#
#{ .Internal(gregexpr("7", 42, F, F, F, F)) }
Error: invalid 'text' argument
......@@ -47596,6 +47651,51 @@ attr(,"match.length")
attr(,"useBytes")
[1] TRUE
 
##com.oracle.truffle.r.test.builtins.TestBuiltin_regexpr.testRegExpr#Output.IgnoreErrorMessage#
#regexpr('(', 'abc()', fixed = FALSE)
Error in regexpr("(", "abc()", fixed = FALSE) :
invalid regular expression '(', reason 'Missing ')''
##com.oracle.truffle.r.test.builtins.TestBuiltin_regexpr.testRegExpr#
#regexpr('(', 'abc()', fixed = TRUE)
[1] 4
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_regexpr.testRegExpr#
#regexpr(')', 'abc()', fixed = FALSE)
[1] 5
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_regexpr.testRegExpr#
#regexpr(')', 'abc()', fixed = TRUE)
[1] 5
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_regexpr.testRegExpr#
#regexpr('\\(', 'abc()', fixed = FALSE)
[1] 4
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_regexpr.testRegExpr#
#regexpr('\\)', 'abc()', fixed = FALSE)
[1] 5
attr(,"match.length")
[1] 1
attr(,"useBytes")
[1] TRUE
##com.oracle.truffle.r.test.builtins.TestBuiltin_regexpr.testRegExpr#
#{ .Internal(regexpr("7", 42, F, F, F, F)) }
Error: invalid 'text' argument
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