Last updated on 2025-12-11 07:49:32 CET.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.2.0 | 1.40 | 19.89 | 21.29 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.2.0 | 1.32 | 16.91 | 18.23 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.2.0 | 32.05 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 0.2.0 | 30.10 | OK | |||
| r-devel-windows-x86_64 | 0.2.0 | 3.00 | 40.00 | 43.00 | OK | |
| r-patched-linux-x86_64 | 0.2.0 | 1.40 | 17.69 | 19.09 | OK | |
| r-release-linux-x86_64 | 0.2.0 | 1.38 | 17.61 | 18.99 | OK | |
| r-release-macos-arm64 | 0.2.0 | OK | ||||
| r-release-macos-x86_64 | 0.2.0 | 2.00 | 44.00 | 46.00 | OK | |
| r-release-windows-x86_64 | 0.2.0 | 3.00 | 38.00 | 41.00 | OK | |
| r-oldrel-macos-arm64 | 0.2.0 | OK | ||||
| r-oldrel-macos-x86_64 | 0.2.0 | 2.00 | 43.00 | 45.00 | OK | |
| r-oldrel-windows-x86_64 | 0.2.0 | 3.00 | 45.00 | 48.00 | OK |
Version: 0.2.0
Check: examples
Result: ERROR
Running examples in ‘aka-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: alias
> ### Title: Create an alias for an expression
> ### Aliases: alias :=
>
> ### ** Examples
>
> x = 'hello'
> alias(ax = x) # same as: ax := x
> ax # prints 'hello'
[1] "hello"
>
> x = 'world'
> ax # prints 'world'
[1] "world"
>
> ax = 'goodbye'
> x # prints 'goodbye'
[1] "goodbye"
>
> # Aliases can be created for complex expressions:
> mercedes := mtcars[grepl('^Merc ', rownames(mtcars)), ]
> mercedes
mpg cyl disp hp drat wt qsec vs am gear carb
Merc 240D 24.4 4 146.7 62 3.69 3.19 20.0 1 0 4 2
Merc 230 22.8 4 140.8 95 3.92 3.15 22.9 1 0 4 2
Merc 280 19.2 6 167.6 123 3.92 3.44 18.3 1 0 4 4
Merc 280C 17.8 6 167.6 123 3.92 3.44 18.9 1 0 4 4
Merc 450SE 16.4 8 275.8 180 3.07 4.07 17.4 0 0 3 3
Merc 450SL 17.3 8 275.8 180 3.07 3.73 17.6 0 0 3 3
Merc 450SLC 15.2 8 275.8 180 3.07 3.78 18.0 0 0 3 3
>
> mercedes$vs = 0 # set all Mercedes engine types to V-shaped
Error in mercedes$vs = 0 :
cannot change value of locked binding for '*tmp*'
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc
Version: 0.2.0
Check: tests
Result: ERROR
Running ‘testthat.r’ [1s/2s]
Running the tests in ‘tests/testthat.r’ failed.
Complete output:
> testthat::test_check(Sys.getenv('_R_CHECK_PACKAGE_NAME_'))
Loading required package: aka
Attaching package: 'aka'
The following object is masked from 'package:stats':
alias
Saving _problems/test-alias-55.R
[ FAIL 1 | WARN 0 | SKIP 0 | PASS 28 ]
══ Failed tests ════════════════════════════════════════════════════════════════
── Error ('test-alias.r:55:3'): alias to complex expression can be updated ─────
Error in `ax[1L] = 3L`: cannot change value of locked binding for '*tmp*'
[ FAIL 1 | WARN 0 | SKIP 0 | PASS 28 ]
Error:
! Test failures.
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc