Last updated on 2023-01-25 04:51:50 CET.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.14.5 | 12.33 | 91.78 | 104.11 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.14.5 | 8.72 | 67.88 | 76.60 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.14.5 | 124.49 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.14.5 | 1170.73 | OK | |||
r-patched-linux-x86_64 | 0.14.5 | 12.16 | 97.60 | 109.76 | OK | |
r-release-linux-x86_64 | 0.14.5 | 10.47 | 103.89 | 114.36 | OK | |
r-release-macos-arm64 | 0.14.5 | 97.00 | OK | |||
r-release-macos-x86_64 | 0.14.5 | 126.00 | OK | |||
r-release-windows-x86_64 | 0.14.5 | 103.00 | 184.00 | 287.00 | OK | |
r-oldrel-macos-arm64 | 0.14.5 | 108.00 | OK | |||
r-oldrel-macos-x86_64 | 0.14.5 | 162.00 | OK | |||
r-oldrel-windows-ix86+x86_64 | 0.14.5 | 25.00 | 147.00 | 172.00 | ERROR |
Version: 0.14.5
Check: tests
Result: ERROR
Running 'winpath.R' [19s]
Running the tests in 'tests/winpath.R' failed.
Complete output:
> library(switchr)
> ## if(getOption("repos")["CRAN"] == "@CRAN@")
> ## chooseCRANmirror(ind=1L)
> graceful_inet(TRUE)
[1] TRUE
> checkUrlRoundtrip = function(pth) {
+ pth = switchr:::normalizePath2(pth)
+ furl = switchr:::makeFileURL(pth)
+ pth2 = switchr:::fileFromFileURL(furl)
+ if(pth != pth2)
+ stop("Round trip result (", pth2, ") does not match original (", pth, ") when creating file URLs")
+ }
>
> ## regression test to ensure that the roundtrip
> ## between path and file url is working properly
> checkUrlRoundtrip(getwd())
> checkUrlRoundtrip(tempdir())
> if(switchr:::isWindows())
+ checkUrlRoundtrip("\\\\localhost\\c$")
>
> ## regreossion test to ensure that package dependencies
> ## are added to the dontunload list when a package
> ## is specified
> bef = switchrDontUnload()
> af = switchrDontUnload("knitr")
Switchr needs a default CRAN mirror set via R options. Using the cloud mirror. This happens only when no CRAN mirror is selected *and* the BiocInstaller package is not installed.
Warning: unable to access index for repository http://bioconductor.org/packages/3.13/bioc/src/contrib:
cannot open URL 'http://bioconductor.org/packages/3.13/bioc/src/contrib/PACKAGES'
Warning: unable to access index for repository http://bioconductor.org/packages/3.13/data/annotation/src/contrib:
cannot open URL 'http://bioconductor.org/packages/3.13/data/annotation/src/contrib/PACKAGES'
Warning: unable to access index for repository http://bioconductor.org/packages/3.13/data/experiment/src/contrib:
cannot open URL 'http://bioconductor.org/packages/3.13/data/experiment/src/contrib/PACKAGES'
> stopifnot(all(c("stringr", "stringi", "magrittr") %in% af))
>
>
> ## regression test for unnecessary (and expensive)
> ## lazy repo construction when install_packages
> ## is passed urls for existing repos (the default
> ## behavior).
> tmplib = tempdir()
> trace(lazyRepo, stop)
Tracing function "lazyRepo" in environment <namespace:switchr>
Warning: Tracing only in the namespace; to untrace you will need:
untrace("lazyRepo", where = getNamespace("switchr"))
[1] "lazyRepo"
attr(,"package")
[1] "switchr"
> install_packages("switchr", repos = defaultRepos(), lib = tmplib)
Error in getStringType(repos) :
Got mixed string types (likely in seed). This shouldn't happen.
Calls: install_packages -> install_packages -> getStringType
Execution halted
Flavor: r-oldrel-windows-ix86+x86_64