@@ -152,11 +152,6 @@ if (.runThisTest) {
152152 checkEquals( fun( x ), 1L , msg = " IntegerVector names based indexing" )
153153 }
154154
155- test.IntegerVector.comma <- function (){
156- fun <- integer_comma
157- checkEquals( fun(), 0 : 3 , msg = " IntegerVector comma initialization" )
158- }
159-
160155 test.IntegerVector.push.back <- function (){
161156 fun <- integer_push_back
162157 checkEquals( fun(1 : 4 ), 1 : 5 , msg = " IntegerVector push back" )
@@ -520,11 +515,6 @@ if (.runThisTest) {
520515 checkEquals( fun(x ), " foo" , msg = " CharacterVector names based indexing" )
521516 }
522517
523- test.CharacterVector.comma <- function (){
524- fun <- character_comma
525- checkEquals( fun(), c(" foo" ," bar" , " bling" ), msg = " CharacterVector comma operator" )
526- }
527-
528518 test.CharacterVector.listOf <- function () {
529519 fun <- character_listOf
530520 checkEquals(fun(list (foo = c(" tic" ," tac" ," toe" ),
@@ -669,5 +659,12 @@ if (.runThisTest) {
669659 lgcl <- as.logical(int )
670660 checkIdentical( sort_logical(lgcl ), sort(lgcl , na.last = TRUE ) )
671661 }
662+
663+ test.List.assign.SEXP <- function () {
664+ l <- list (1 , 2 , 3 )
665+ other <- list_sexp_assign(l )
666+ checkIdentical(l , other )
667+ }
668+
672669}
673670
0 commit comments