Last updated on 2026-02-07 11:49:48 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.14.8 | 11.70 | 91.50 | 103.20 | NOTE | |
| r-devel-linux-x86_64-debian-gcc | 0.14.8 | 7.04 | 58.39 | 65.43 | NOTE | |
| r-devel-linux-x86_64-fedora-clang | 0.14.8 | 19.00 | 128.02 | 147.02 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.14.8 | 17.00 | 181.66 | 198.66 | OK | |
| r-devel-windows-x86_64 | 0.14.8 | 12.00 | 107.00 | 119.00 | ERROR | |
| r-patched-linux-x86_64 | 0.14.8 | 12.28 | 93.24 | 105.52 | OK | |
| r-release-linux-x86_64 | 0.14.8 | 11.07 | 91.28 | 102.35 | OK | |
| r-release-macos-arm64 | 0.14.8 | OK | ||||
| r-release-macos-x86_64 | 0.14.8 | 24.00 | 214.00 | 238.00 | OK | |
| r-release-windows-x86_64 | 0.14.8 | 15.00 | 161.00 | 176.00 | OK | |
| r-oldrel-macos-arm64 | 0.14.8 | OK | ||||
| r-oldrel-macos-x86_64 | 0.14.8 | 16.00 | 190.00 | 206.00 | OK | |
| r-oldrel-windows-x86_64 | 0.14.8 | 16.00 | 169.00 | 185.00 | OK |
Version: 0.14.8
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Gabriel Becker <gabembecker@gmail.com>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: person(given = "Gabriel",
family = "Becker",
role = c("aut", "cre"),
email = "gabembecker@gmail.com")
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 0.14.8
Check: tests
Result: ERROR
Running 'winpath.R' [6s]
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")
> 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 rbind(avail1, avail2[new, ]) :
number of columns of matrices must match (see arg 2)
Calls: install_packages ... install_packages -> install_packages -> .install_packages -> rbind
Execution halted
Flavor: r-devel-windows-x86_64