Last updated on 2026-04-08 05:56:11 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 1.5.1 | 54.33 | 104.19 | 158.52 | OK | |
| r-devel-linux-x86_64-debian-gcc | 1.5.1 | 35.59 | 73.74 | 109.33 | OK | |
| r-devel-linux-x86_64-fedora-clang | 1.5.1 | 82.00 | 163.78 | 245.78 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 1.5.1 | 110.00 | 155.52 | 265.52 | OK | |
| r-devel-macos-arm64 | 1.5.1 | 11.00 | 21.00 | 32.00 | OK | |
| r-devel-windows-x86_64 | 1.5.1 | 72.00 | 129.00 | 201.00 | OK | |
| r-patched-linux-x86_64 | 1.5.0 | 51.99 | 91.40 | 143.39 | NOTE | |
| r-release-linux-x86_64 | 1.5.0 | 53.86 | 88.74 | 142.60 | OK | |
| r-release-macos-arm64 | 1.5.1 | 9.00 | 22.00 | 31.00 | OK | |
| r-release-macos-x86_64 | 1.5.1 | 35.00 | 97.00 | 132.00 | OK | |
| r-release-windows-x86_64 | 1.5.0 | 79.00 | 124.00 | 203.00 | OK | |
| r-oldrel-macos-arm64 | 1.5.0 | 11.00 | 44.00 | 55.00 | OK | |
| r-oldrel-macos-x86_64 | 1.5.1 | 33.00 | 36.00 | 69.00 | ERROR | |
| r-oldrel-windows-x86_64 | 1.5.0 | 90.00 | 160.00 | 250.00 | OK |
Version: 1.5.0
Check: compiled code
Result: NOTE
File ‘cheapr/libs/cheapr.so’:
Found non-API calls to R: ‘R_MissingArg’, ‘R_UnboundValue’
Compiled code should not call non-API entry points in R.
See ‘Writing portable packages’ in the ‘Writing R Extensions’ manual,
and section ‘Moving into C API compliance’ for issues with the use of
non-API entry points.
Flavor: r-patched-linux-x86_64
Version: 1.5.1
Check: examples
Result: ERROR
Running examples in ‘cheapr-Ex.R’ failed
The error most likely occurred in:
> ### Name: c_
> ### Title: A cheapr version of 'c()'
> ### Aliases: c_ cheapr_c
>
> ### ** Examples
>
> library(cheapr)
>
> # Combine just like `c()`
> c_(1, 2, 3:5)
[1] 1 2 3 4 5
>
> # It combines rows by default instead of cols
> c_(new_df(x = 1:3), new_df(x = 4:10))
x
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10
>
> # If you have a list of objects you want to combine
> # use `.args` instead of `do.call` as it's more efficient
>
> list_of_objs <- rep_(list(0), 10^4)
>
> bench::mark(
+ do.call(c, list_of_objs),
+ do.call(c_, list_of_objs),
+ c_(.args = list_of_objs) # Fastest
+ )
Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
there is no package called ‘rlang’
Calls: loadNamespace ... loadNamespace -> withRestarts -> withOneRestart -> doWithOneRestart
Execution halted
Flavor: r-oldrel-macos-x86_64
Version: 1.5.1
Check: tests
Result: ERROR
Running ‘testthat.R’ [0s/0s]
Running the tests in ‘tests/testthat.R’ failed.
Complete output:
> # This file is part of the standard setup for testthat.
> # It is recommended that you do not modify it.
> #
> # Where should you do additional test configuration?
> # Learn more about the roles of various files in:
> # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview
> # * https://testthat.r-lib.org/articles/special-files.html
>
> library(testthat)
Error: package or namespace load failed for 'testthat' in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]):
there is no package called 'rlang'
Execution halted
Flavor: r-oldrel-macos-x86_64