Last updated on 2023-03-28 07:53:16 CEST.
Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
---|---|---|---|---|---|---|
r-devel-linux-x86_64-debian-clang | 0.14.8 | 10.73 | 109.39 | 120.12 | OK | |
r-devel-linux-x86_64-debian-gcc | 0.14.8 | 10.26 | 72.61 | 82.87 | OK | |
r-devel-linux-x86_64-fedora-clang | 0.14.8 | 143.25 | OK | |||
r-devel-linux-x86_64-fedora-gcc | 0.14.8 | 177.59 | OK | |||
r-patched-linux-x86_64 | 0.14.8 | 12.83 | 107.35 | 120.18 | OK | |
r-release-linux-x86_64 | 0.14.8 | 13.24 | 112.28 | 125.52 | OK | |
r-release-macos-arm64 | 0.14.8 | 136.00 | OK | |||
r-release-macos-x86_64 | 0.14.8 | 206.00 | OK | |||
r-release-windows-x86_64 | 0.14.8 | 112.00 | 200.00 | 312.00 | OK | |
r-oldrel-macos-arm64 | 0.14.8 | 178.00 | OK | |||
r-oldrel-macos-x86_64 | 0.14.8 | 220.00 | OK | |||
r-oldrel-windows-ix86+x86_64 | 0.14.8 | 33.00 | 178.00 | 211.00 | ERROR |
Version: 0.14.8
Check: tests
Result: ERROR
Running 'winpath.R' [28s]
Running the tests in 'tests/winpath.R' failed.
Complete output:
> library(switchr)
> ## if(getOption("repos")["CRAN"] == "@CRAN@")
> ## chooseCRANmirror(ind=1L)
> graceful_inet(TRUE)
$on
[1] TRUE
$silent
[1] FALSE
> 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")
Warning: unable to access index for repository https://bioconductor.org/packages/3.14/bioc/src/contrib:
cannot open URL 'https://bioconductor.org/packages/3.14/bioc/src/contrib/PACKAGES'
Warning: unable to access index for repository https://bioconductor.org/packages/3.14/data/annotation/src/contrib:
cannot open URL 'https://bioconductor.org/packages/3.14/data/annotation/src/contrib/PACKAGES'
Warning: unable to access index for repository https://bioconductor.org/packages/3.14/data/experiment/src/contrib:
cannot open URL 'https://bioconductor.org/packages/3.14/data/experiment/src/contrib/PACKAGES'
Warning: unable to access index for repository https://bioconductor.org/packages/3.14/workflows/src/contrib:
cannot open URL 'https://bioconductor.org/packages/3.14/workflows/src/contrib/PACKAGES'
> stopifnot(all(tools::package_dependencies("knitr", recursive = TRUE)[[1]] %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.https://cloud.r-project.org
https://bioconductor.org/packages/3.14/bioc
https://bioconductor.org/packages/3.14/data/annotation
https://bioconductor.org/packages/3.14/data/experiment
https://bioconductor.org/packages/3.14/workflows
https://bioconductor.org/packages/3.14/booksrepourl
manifesturl
Calls: install_packages -> install_packages -> getStringType
Execution halted
Flavor: r-oldrel-windows-ix86+x86_64