Last updated on 2018-02-24 09:51:55 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.10-1 | 13.27 | 72.34 | 85.61 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.10-1 | 11.54 | 58.05 | 69.59 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.10-1 | 106.95 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.10-1 | 105.13 | OK | |||
r-devel-windows-ix86+x86_64 | 0.10-1 | 65.00 | 170.00 | 235.00 | OK | |
r-patched-linux-x86_64 | 0.10-1 | 7.48 | 89.35 | 96.83 | OK | |
r-patched-solaris-x86 | 0.10-1 | 158.20 | ERROR | |||
r-release-linux-x86_64 | 0.10-1 | 7.77 | 86.33 | 94.10 | OK | |
r-release-windows-ix86+x86_64 | 0.10-1 | 39.00 | 164.00 | 203.00 | OK | |
r-release-osx-x86_64 | 0.10-1 | OK | ||||
r-oldrel-windows-ix86+x86_64 | 0.10-1 | 36.00 | 117.00 | 153.00 | OK | |
r-oldrel-osx-x86_64 | 0.10-1 | OK |
Version: 0.10-1
Check: tests
Result: ERROR
Running ‘doRUnit.R’ [43s/49s]
Running the tests in ‘tests/doRUnit.R’ failed.
Complete output:
> ## unit tests will not be done if RUnit is not available
> if(require("RUnit", quietly=TRUE)) {
+
+ ## --- Setup ---
+ R_CMD_CHECK <- Sys.getenv("RCMDCHECK") != "FALSE"
+
+ pkg <- "xts" # <-- Change to package name!
+ if (R_CMD_CHECK) {
+ ## Path to unit tests for R CMD check
+ ## PKG.Rcheck/tests/../PKG/unitTests
+ path <- system.file(package=pkg, "unitTests")
+ } else {
+ ## Path to unit tests for standalone running under Makefile (not R CMD check)
+ ## PKG/tests/../inst/unitTests
+ path <- file.path(getwd(), "..", "inst", "unitTests")
+ }
+ cat("\nRunning unit tests\n")
+ print(list(pkg=pkg, getwd=getwd(), pathToUnitTests=path))
+
+ library(package=pkg, character.only=TRUE)
+
+ ## If desired, load the name space to allow testing of private functions
+ ## if (is.element(pkg, loadedNamespaces()))
+ ## attach(loadNamespace(pkg), name=paste("namespace", pkg, sep=":"), pos=3)
+ ##
+ ## or simply call PKG:::myPrivateFunction() in tests
+
+ ## --- Testing ---
+
+ ## Define tests
+ testSuite <- defineTestSuite(name=paste(pkg, "unit testing"),
+ dirs=path)
+ ## Run
+ tests <- runTestSuite(testSuite)
+
+ ## Report to stdout
+ cat("------------------- UNIT TEST SUMMARY ---------------------\n\n")
+ printTextProtocol(tests, showDetails=FALSE)
+
+ ## Report text files (only if not under R CMD check)
+ if (!R_CMD_CHECK) {
+ ## Default report name
+ pathReport <- file.path(path, "report")
+
+ printTextProtocol(tests, showDetails=FALSE,
+ fileName=paste(pathReport, "Summary.txt", sep=""))
+ printTextProtocol(tests, showDetails=TRUE,
+ fileName=paste(pathReport, ".txt", sep=""))
+
+ ## Report to HTML file
+ printHTMLProtocol(tests, fileName=paste(pathReport, ".html", sep=""))
+ }
+
+ ## Return stop() to cause R CMD check stop in case of
+ ## - failures i.e. FALSE to unit tests or
+ ## - errors i.e. R errors
+ tmp <- getErrors(tests)
+ if(tmp$nFail > 0 | tmp$nErr > 0) {
+ stop(paste("\n\nunit testing failed (#test failures: ", tmp$nFail,
+ ", #R errors: ", tmp$nErr, ")\n\n", sep=""))
+ }
+ } else {
+ warning("cannot run unit tests -- package RUnit is not available")
+ }
Running unit tests
$pkg
[1] "xts"
$getwd
[1] "/home/ripley/R/packages/tests32/xts.Rcheck/tests"
$pathToUnitTests
[1] "/tmp/RtmpjJaWid/RLIBS_6464ec63c90/xts/unitTests"
Loading required package: zoo
Attaching package: 'zoo'
The following objects are masked from 'package:base':
as.Date, as.Date.numeric
Executing test function test.convert_data.frame_to_xts ... done successfully.
Executing test function test.convert_data.frame_to_xts_i1 ... done successfully.
Executing test function test.convert_data.frame_to_xts_i1j1 ... done successfully.
Executing test function test.convert_data.frame_to_xts_j1 ... done successfully.
Executing test function test.convert_data.frame_to_xts_order.by_Date ... done successfully.
Executing test function test.convert_data.frame_to_xts_order.by_POSIXct ... done successfully.
Executing test function test.convert_data.frame_to_xts_order.by_POSIXlt ... done successfully.
Executing test function test.data.frame_reclass ... done successfully.
Executing test function test.data.frame_reclass_subset_as.xts_j1 ... done successfully.
Executing test function test.data.frame_reclass_subset_data.frame_j1 ... Error in try.xts(sample.data.frame[, 1]) :
Error in as.xts.double(x, ..., .RECLASS = TRUE) : order.by must be either 'names()' or otherwise specified
done successfully.
Executing test function test.data.frame_reclass_subset_reclass_j1 ... done successfully.
Executing test function test.diff_differences_LT1 ... Error in diff.xts(x, 1L, -1L) :
'diff.xts' defined only for positive lag and differences arguments
done successfully.
Executing test function test.diff_differences_NA ... Error in diff.xts(x, 1L, "a") : 'differences' must be integer
In addition: Warning message:
In diff.xts(x, 1L, "a") : NAs introduced by coercion
done successfully.
Executing test function test.diff_integer_Date ... done successfully.
Executing test function test.diff_integer_POSIXt ... done successfully.
Executing test function test.diff_lag_LT1 ... Error in diff.xts(x, -1L, 1L) :
'diff.xts' defined only for positive lag and differences arguments
done successfully.
Executing test function test.diff_lag_NA ... Error in diff.xts(x, "a", 1L) : 'lag' must be integer
In addition: Warning message:
In diff.xts(x, "a", 1L) : NAs introduced by coercion
done successfully.
Executing test function test.diff_logical_Date ... done successfully.
Executing test function test.diff_logical_POSIXt ... done successfully.
Executing test function test.diff_numeric_Date ... done successfully.
Executing test function test.diff_numeric_POSIXt ... done successfully.
Executing test function test.days_double_index ... done successfully.
Executing test function test.days_integer_index ... done successfully.
Executing test function test.double_index_cross_epoch ... done successfully.
Executing test function test.hours_double_index ... done successfully.
Executing test function test.hours_integer_index ... done successfully.
Executing test function test.integer_index_cross_epoch ... done successfully.
Executing test function test.minutes_double_index ... done successfully.
Executing test function test.minutes_integer_index ... done successfully.
Executing test function test.minutes_mins ... done successfully.
Executing test function test.months_double_index ... done successfully.
Executing test function test.months_integer_index ... done successfully.
Executing test function test.quarters_double_index ... done successfully.
Executing test function test.quarters_integer_index ... done successfully.
Executing test function test.seconds_double_index ... done successfully.
Executing test function test.seconds_integer_index ... done successfully.
Executing test function test.seconds_secs ... done successfully.
Executing test function test.sparse_days ... done successfully.
Executing test function test.sparse_months ... done successfully.
Executing test function test.sparse_quarters ... done successfully.
Executing test function test.sparse_weeks ... done successfully.
Executing test function test.sparse_years ... done successfully.
Executing test function test.sub_second_resolution ... done successfully.
Executing test function test.sub_second_resolution_exact ... done successfully.
Executing test function test.sub_second_resolution_representation ... done successfully.
Executing test function test.weeks_double_index ... done successfully.
Executing test function test.weeks_integer_index ... done successfully.
Executing test function test.years_double_index ... done successfully.
Executing test function test.years_integer_index ... done successfully.
Loading required namespace: fts
Executing test function test.convert_fts12_to_xts ... done successfully.
Executing test function test.convert_fts12_to_xts_i1 ... done successfully.
Executing test function test.convert_fts12_to_xts_i1j1 ... done successfully.
Executing test function test.convert_fts12_to_xts_j1 ... done successfully.
Executing test function test.convert_fts4_to_xts ... done successfully.
Executing test function test.convert_fts4_to_xts_i1 ... done successfully.
Executing test function test.convert_fts4_to_xts_i1j1 ... done successfully.
Executing test function test.convert_fts4_to_xts_j1 ... done successfully.
Executing test function test.convert_fts_to_xts ... done successfully.
Executing test function test.convert_fts_to_xts_i1 ... done successfully.
Executing test function test.convert_fts_to_xts_i1j1 ... done successfully.
Executing test function test.convert_fts_to_xts_j1 ... done successfully.
Executing test function test.fts12_reclass ... done successfully.
Executing test function test.fts12_reclass_subset_as.xfts_j1 ... done successfully.
Executing test function test.fts12_reclass_subset_fts_j1 ... done successfully.
Executing test function test.fts12_reclass_subset_reclass_j1 ... done successfully.
Executing test function test.fts4_reclass ... done successfully.
Executing test function test.fts4_reclass_subset_as.xts_j1 ... done successfully.
Executing test function test.fts4_reclass_subset_fts_j1 ... done successfully.
Executing test function test.fts4_reclass_subset_reclass_j1 ... done successfully.
Executing test function test.fts_reclass ... done successfully.
Executing test function test.fts_reclass_subset_as.xts_j1 ... done successfully.
Executing test function test.fts_reclass_subset_fts_j1 ... done successfully.
Executing test function test.fts_reclass_subset_reclass_j1 ... done successfully.
Executing test function test.checkUTC_set_index2Date ... done successfully.
Executing test function test.checkUTC_set_index2chron ... Loading required namespace: chron
done successfully.
Executing test function test.checkUTC_set_index2yearmon ... done successfully.
Executing test function test.checkUTC_set_index2yearqtr ... done successfully.
Executing test function test.convert_Date2Date ... done successfully.
Executing test function test.convert_Date2POSIXct ... done successfully.
Executing test function test.convert_Date2chron ... done successfully.
Executing test function test.convert_Date2timeDate ... done successfully.
Executing test function test.convert_Date2yearmon ... done successfully.
Executing test function test.convert_Date2yearqtr ... done successfully.
Executing test function test.convert_POSIXct2Date ... done successfully.
Executing test function test.convert_POSIXct2POSIXct ... done successfully.
Executing test function test.convert_POSIXct2chron ... done successfully.
Executing test function test.convert_POSIXct2timeDate ... done successfully.
Executing test function test.convert_POSIXct2yearmon ... done successfully.
Executing test function test.convert_POSIXct2yearqtr ... done successfully.
Executing test function test.convert_chron2Date ... done successfully.
Executing test function test.convert_chron2POSIXct ... done successfully.
Executing test function test.convert_chron2chron ... done successfully.
Executing test function test.convert_chron2timeDate ... done successfully.
Executing test function test.convert_chron2yearmon ... done successfully.
Executing test function test.convert_chron2yearqtr ... done successfully.
Executing test function test.convert_timeDate2Date ... done successfully.
Executing test function test.convert_timeDate2POSIXct ... done successfully.
Executing test function test.convert_timeDate2chron ... done successfully.
Executing test function test.convert_timeDate2timeDate ... done successfully.
Executing test function test.convert_timeDate2yearmon ... done successfully.
Executing test function test.convert_timeDate2yearqtr ... done successfully.
Executing test function test.convert_yearmon2Date ... done successfully.
Executing test function test.convert_yearmon2POSIXct ... done successfully.
Executing test function test.convert_yearmon2chron ... done successfully.
Executing test function test.convert_yearmon2timeDate ... done successfully.
Executing test function test.convert_yearmon2yearmon ... done successfully.
Executing test function test.convert_yearmon2yearqtr ... done successfully.
Executing test function test.convert_yearqtr2Date ... done successfully.
Executing test function test.convert_yearqtr2POSIXct ... done successfully.
Executing test function test.convert_yearqtr2chron ... done successfully.
Executing test function test.convert_yearqtr2timeDate ... done successfully.
Executing test function test.convert_yearqtr2yearmon ... done successfully.
Executing test function test.convert_yearqtr2yearqtr ... done successfully.
Executing test function test.indexClass_NULL ... Error in `indexClass<-.xts`(`*tmp*`, value = NULL) :
improperly specified value for indexClass
done successfully.
Executing test function test.indexClass_empty_string ... Error in `indexClass<-.xts`(`*tmp*`, value = "") :
unsupported 'indexClass' indexing type:
done successfully.
Executing test function test.indexClass_full_index ... Error in `indexClass<-.xts`(`*tmp*`, value = <S4 object of class structure("timeDate", package = "timeDate")>) :
improperly specified value for indexClass
done successfully.
Executing test function test.indexClass_missing_object ... Error in eval(expr, envir = parent.frame()) : object 'Date' not found
In addition: Warning message:
In rm(Date) : object 'Date' not found
done successfully.
Executing test function test.indexClass_unquoted_symbol ... Error in match(x, table, nomatch = 0L) :
'match' requires vector arguments
done successfully.
Attaching package: 'tseries'
The following object is masked from 'package:chron':
is.weekend
Executing test function test.convert_irts_to_xts ... done successfully.
Executing test function test.convert_irts_to_xts_i1 ... done successfully.
Executing test function test.convert_irts_to_xts_i1j1 ... done successfully.
Executing test function test.convert_irts_to_xts_j1 ... done successfully.
Executing test function test.irts_reclass ... Timing stopped at: 0.001 0 0
Error in DEACTIVATED("irts forces rownames, xts disallows rownames. Unable to test") :
irts forces rownames, xts disallows rownames. Unable to test
done successfully.
Executing test function test.irts_reclass_subset_as.xts_j1 ... Timing stopped at: 0.001 0 0
Error in DEACTIVATED("irts forces rownames, xts disallows rownames. Unable to test") :
irts forces rownames, xts disallows rownames. Unable to test
done successfully.
Executing test function test.irts_reclass_subset_irts_j1 ... Timing stopped at: 0.001 0 0.001
Error in DEACTIVATED("irts forces rownames, xts disallows rownames. Unable to test") :
irts forces rownames, xts disallows rownames. Unable to test
done successfully.
Executing test function test.irts_reclass_subset_reclass_j1 ... Timing stopped at: 0 0 0
Error in DEACTIVATED("irts forces rownames, xts disallows rownames. Unable to test") :
irts forces rownames, xts disallows rownames. Unable to test
done successfully.
Executing test function test.isOrdered_decr ... done successfully.
Executing test function test.isOrdered_decr_begNA ... done successfully.
Executing test function test.isOrdered_decr_endNA ... done successfully.
Executing test function test.isOrdered_decr_midNA ... done successfully.
Executing test function test.isOrdered_incr ... done successfully.
Executing test function test.isOrdered_incr_begNA ... done successfully.
Executing test function test.isOrdered_incr_endNA ... done successfully.
Executing test function test.isOrdered_incr_midNA ... done successfully.
Executing test function test.lag_integer_Date ... done successfully.
Executing test function test.lag_integer_POSIXt ... done successfully.
Executing test function test.lag_k_NA ... done successfully.
Executing test function test.lag_k_zero_length ... done successfully.
Executing test function test.lag_logical_Date ... done successfully.
Executing test function test.lag_logical_POSIXt ... done successfully.
Executing test function test.lag_numeric_Date ... done successfully.
Executing test function test.lag_numeric_POSIXt ... done successfully.
Executing test function test.convert_matrix_to_xts ... done successfully.
Executing test function test.convert_matrix_to_xts_i1 ... done successfully.
Executing test function test.convert_matrix_to_xts_i1j1 ... done successfully.
Executing test function test.convert_matrix_to_xts_j1 ... done successfully.
Executing test function test.matrix_reclass ... done successfully.
Executing test function test.matrix_reclass_subset_as.xts_j1 ... done successfully.
Executing test function test.matrix_reclass_subset_matrix_j1 ... done successfully.
Executing test function test.matrix_reclass_subset_reclass_j1 ... done successfully.
Executing test function test.zero_width_xts_to_matrix ... done successfully.
Executing test function test.merge_empty_xts_with_2_scalars ... done successfully.
Executing test function test.merge_fill_NULL ... done successfully.
Executing test function test.merge_fill_zero_length ... done successfully.
Executing test function test.merge_index_contains_Inf ... done successfully.
Executing test function test.merge_index_contains_NA_double ... done successfully.
Executing test function test.merge_index_contains_NA_integer ... done successfully.
Executing test function test.merge_index_contains_NaN ... done successfully.
Executing test function test.INDEX_ends_with_lengthX ... done successfully.
Executing test function test.INDEX_ends_with_lengthX_vector ... done successfully.
Executing test function test.INDEX_starts_with_zero ... done successfully.
Executing test function test.INDEX_starts_with_zero_vector ... done successfully.
Executing test function test.duplicate_INDEX ... done successfully.
Executing test function test.duplicate_INDEX_vector ... done successfully.
Executing test function test.unsorted_INDEX ... done successfully.
Executing test function test.unsorted_INDEX_vector ... done successfully.
Executing test function test.format_xts_yearqtr ... done successfully.
Executing test function test.format_zoo_yearqtr ... done successfully.
Executing test function test.split_character_f_not_endpoints ... done successfully.
Executing test function test.i_integer_j_NA_no_colnames ... done successfully.
Executing test function test.i_missing_j_NA_has_colnames ... done successfully.
Executing test function test.i_missing_j_NA_no_colnames ... done successfully.
Executing test function test.tbs_199901_to_200801_by_month ... Timing stopped at: 0.014 0.001 0.015
Error in checkEqualsNumeric(tbs, bench) :
Mean relative difference: 4.159561e-05
In addition: Warning messages:
1: In rm(LAG) : object 'LAG' not found
2: In rm(LAG) : object 'LAG' not found
3: In lag.xts(x, "a") : NAs introduced by coercion
4: In rm(LAG) : object 'LAG' not found
5: In rm(LAG) : object 'LAG' not found
6: In rm(LAG) : object 'LAG' not found
7: In rm(LAG) : object 'LAG' not found
8: In rm(LAG) : object 'LAG' not found
9: In rm(LAG) : object 'LAG' not found
done successfully.
Executing test function test.tbs_199901_to_200801_by_month_Date ... done successfully.
Executing test function test.tbs_199901_to_200801_by_month_POSIXct ... done successfully.
Executing test function test.tbs_199901_to_2008_by_month ... Timing stopped at: 0.01 0.001 0.016
Error in checkEqualsNumeric(tbs, bench) :
Mean relative difference: 4.158523e-05
done successfully.
Executing test function test.tbs_199901_to_2008_by_month_Date ... done successfully.
Executing test function test.tbs_199901_to_2008_by_month_POSIXct ... done successfully.
Executing test function test.tbs_1999_to_200801_by_month ... Timing stopped at: 0.009 0.001 0.009
Error in checkEqualsNumeric(tbs, bench) :
Mean relative difference: 4.159561e-05
done successfully.
Executing test function test.tbs_1999_to_200801_by_month_Date ... done successfully.
Executing test function test.tbs_1999_to_200801_by_month_POSIXct ... done successfully.
Executing test function test.tbs_1999_to_2008_by_year ... done successfully.
Executing test function test.tbs_1999_to_2008_by_year_Date ... done successfully.
Executing test function test.tbs_1999_to_2008_by_year_retclassDate ... done successfully.
Attaching package: 'timeSeries'
The following object is masked from 'package:zoo':
time<-
Executing test function test.convert_timeSeries.univariate_to_xts ... done successfully.
Executing test function test.convert_timeSeries.univariate_to_xts_i1 ... done successfully.
Executing test function test.convert_timeSeries.univariate_to_xts_i1j1 ... done successfully.
Executing test function test.convert_timeSeries.univariate_to_xts_j1 ... done successfully.
Executing test function test.convert_timeSeries_to_xts ... done successfully.
Executing test function test.convert_timeSeries_to_xts_i1 ... done successfully.
Executing test function test.convert_timeSeries_to_xts_i1j1 ... done successfully.
Executing test function test.convert_timeSeries_to_xts_j1 ... done successfully.
Executing test function test.timeSeries_reclass ... done successfully.
Executing test function test.timeSeries_reclass_subset_as.xts_j1 ... done successfully.
Executing test function test.timeSeries_reclass_subset_reclass_j1 ... done successfully.
Executing test function test.timeSeries_reclass_subset_timeSeries_j1 ... done successfully.
Executing test function test.to.frequency_includes_first_group ... done successfully.
Executing test function test.convert_ts12_to_xts ... done successfully.
Executing test function test.convert_ts12_to_xts_i1 ... done successfully.
Executing test function test.convert_ts12_to_xts_i1j1 ... done successfully.
Executing test function test.convert_ts12_to_xts_j1 ... done successfully.
Executing test function test.convert_ts4_to_xts ... done successfully.
Executing test function test.convert_ts4_to_xts_i1 ... done successfully.
Executing test function test.convert_ts4_to_xts_i1j1 ... done successfully.
Executing test function test.convert_ts4_to_xts_j1 ... done successfully.
Executing test function test.convert_ts_to_xts ... done successfully.
Executing test function test.convert_ts_to_xts_i1 ... done successfully.
Executing test function test.convert_ts_to_xts_i1j1 ... done successfully.
Executing test function test.convert_ts_to_xts_j1 ... done successfully.
Executing test function test.ts12_reclass ... done successfully.
Executing test function test.ts12_reclass_subset_as.xts_j1 ... done successfully.
Executing test function test.ts12_reclass_subset_reclass_j1 ... done successfully.
Executing test function test.ts12_reclass_subset_ts_j1 ... done successfully.
Executing test function test.ts4_reclass ... done successfully.
Executing test function test.ts4_reclass_subset_as.xts_j1 ... done successfully.
Executing test function test.ts4_reclass_subset_reclass_j1 ... done successfully.
Executing test function test.ts4_reclass_subset_ts_j1 ... done successfully.
Executing test function test.ts_reclass ... done successfully.
Executing test function test.ts_reclass_subset_as.xts_j1 ... done successfully.
Executing test function test.ts_reclass_subset_reclass_j1 ... done successfully.
Executing test function test.ts_reclass_subset_ts_j1 ... done successfully.
Executing test function test..xts_order.by_Inf_double ... Error in .xts(1:3, c(1, 2, Inf)) :
'index' cannot contain 'NA', 'NaN', or 'Inf'
Error in .xts(1:3, c(-Inf, 2, 3)) :
'index' cannot contain 'NA', 'NaN', or 'Inf'
done successfully.
Executing test function test..xts_order.by_NA_double ... Error in .xts(1:3, c(1, 2, NA)) :
'index' cannot contain 'NA', 'NaN', or 'Inf'
Error in .xts(1:3, c(NA, 2, 3)) :
'index' cannot contain 'NA', 'NaN', or 'Inf'
Error in .xts(1:3, c(1, NA, 3)) :
'index' cannot contain 'NA', 'NaN', or 'Inf'
done successfully.
Executing test function test..xts_order.by_NA_integer ... Error in .xts(1:3, c(1L, 2L, NA)) :
'index' cannot contain 'NA', 'NaN', or 'Inf'
Error in .xts(1:3, c(NA, 2L, 3L)) : index is not in increasing order
Error in .xts(1:3, c(1L, NA, 3L)) : index is not in increasing order
done successfully.
Executing test function test..xts_order.by_NaN_double ... Error in .xts(1:3, c(1, 2, NaN)) :
'index' cannot contain 'NA', 'NaN', or 'Inf'
Error in .xts(1:3, c(NaN, 2, 3)) :
'index' cannot contain 'NA', 'NaN', or 'Inf'
Error in .xts(1:3, c(1, NaN, 3)) :
'index' cannot contain 'NA', 'NaN', or 'Inf'
done successfully.
Executing test function test.xts_order.by_Inf_double ... Error in xts(1:3, .POSIXct(c(1, 2, Inf))) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
Error in xts(1:3, .POSIXct(c(-Inf, 2, 3))) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
done successfully.
Executing test function test.xts_order.by_NA_double ... Error in xts(1:3, .POSIXct(c(1, 2, NA))) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
Error in xts(1:3, .POSIXct(c(NA, 2, 3))) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
Error in xts(1:3, .POSIXct(c(1, NA, 3))) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
done successfully.
Executing test function test.xts_order.by_NA_integer ... Error in xts(1:3, as.Date(c(1L, 2L, NA), origin = "1970-01-01")) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
Error in xts(1:3, as.Date(c(NA, 2L, 3L), origin = "1970-01-01")) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
Error in xts(1:3, as.Date(c(1L, NA, 3L), origin = "1970-01-01")) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
done successfully.
Executing test function test.xts_order.by_NaN_double ... Error in xts(1:3, .POSIXct(c(1, 2, NaN))) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
Error in xts(1:3, .POSIXct(c(NaN, 2, 3))) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
Error in xts(1:3, .POSIXct(c(1, NaN, 3))) :
'order.by' cannot contain 'NA', 'NaN', or 'Inf'
done successfully.
Executing test function test.as.Date.numeric ... done successfully.
Executing test function test.rbind_zero_length_non_zero_length_Date_errors ... done successfully.
Executing test function test.rbind_zero_length_non_zero_length_POSIXct_errors ... done successfully.
Executing test function test.convert_zoo_to_xts ... done successfully.
Executing test function test.convert_zoo_to_xts_i1 ... done successfully.
Executing test function test.convert_zoo_to_xts_i1j1 ... done successfully.
Executing test function test.convert_zoo_to_xts_j1 ... done successfully.
Executing test function test.zoo_reclass ... Timing stopped at: 0.001 0 0.001
Error in DEACTIVATED("rownames are not kept yet in current xts-dev") :
rownames are not kept yet in current xts-dev
done successfully.
Executing test function test.zoo_reclass_subset_as.xts_j1 ... done successfully.
Executing test function test.zoo_reclass_subset_reclass_j1 ... Timing stopped at: 0.001 0 0.001
Error in DEACTIVATED("rownames are not kept yet in current xts-dev") :
rownames are not kept yet in current xts-dev
done successfully.
Executing test function test.zoo_reclass_subset_zoo_j1 ... done successfully.
------------------- UNIT TEST SUMMARY ---------------------
RUNIT TEST PROTOCOL -- Fri Feb 16 15:49:07 2018
***********************************************
Number of test functions: 234
Number of deactivated test functions: 6
Number of errors: 0
Number of failures: 3
1 Test Suite :
xts unit testing - 234 test functions, 0 errors, 3 failures
DEACTIVATED test.irts_reclass: irts forces rownames, xts disallows rownames. Unable to test
DEACTIVATED test.irts_reclass_subset_as.xts_j1: irts forces rownames, xts disallows rownames. Unable to test
DEACTIVATED test.irts_reclass_subset_irts_j1: irts forces rownames, xts disallows rownames. Unable to test
DEACTIVATED test.irts_reclass_subset_reclass_j1: irts forces rownames, xts disallows rownames. Unable to test
FAILURE in test.tbs_199901_to_200801_by_month: Error in checkEqualsNumeric(tbs, bench) :
Mean relative difference: 4.159561e-05
FAILURE in test.tbs_199901_to_2008_by_month: Error in checkEqualsNumeric(tbs, bench) :
Mean relative difference: 4.158523e-05
FAILURE in test.tbs_1999_to_200801_by_month: Error in checkEqualsNumeric(tbs, bench) :
Mean relative difference: 4.159561e-05
DEACTIVATED test.zoo_reclass: rownames are not kept yet in current xts-dev
DEACTIVATED test.zoo_reclass_subset_reclass_j1: rownames are not kept yet in current xts-dev
Error:
unit testing failed (#test failures: 3, #R errors: 0)
Execution halted
Flavor: r-patched-solaris-x86