Last updated on 2026-04-23 01:52:31 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 2.17.3 | 4.34 | 63.62 | 67.96 | OK | |
| r-devel-linux-x86_64-debian-gcc | 2.17.3 | 2.45 | 49.29 | 51.74 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 2.17.3 | 7.00 | 107.03 | 114.03 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 2.17.3 | 117.49 | OK | |||
| r-devel-macos-arm64 | 2.17.3 | 1.00 | 28.00 | 29.00 | OK | |
| r-devel-windows-x86_64 | 2.17.3 | 6.00 | 107.00 | 113.00 | OK | |
| r-patched-linux-x86_64 | 2.17.3 | 4.68 | 62.20 | 66.88 | OK | |
| r-release-linux-x86_64 | 2.17.3 | 3.95 | 58.02 | 61.97 | OK | |
| r-release-macos-arm64 | 2.17.3 | 1.00 | 26.00 | 27.00 | OK | |
| r-release-macos-x86_64 | 2.17.3 | 3.00 | 104.00 | 107.00 | OK | |
| r-release-windows-x86_64 | 2.17.3 | 7.00 | 110.00 | 117.00 | OK | |
| r-oldrel-macos-arm64 | 2.17.3 | 1.00 | 30.00 | 31.00 | OK | |
| r-oldrel-macos-x86_64 | 2.17.3 | 3.00 | 131.00 | 134.00 | OK | |
| r-oldrel-windows-x86_64 | 2.17.3 | 7.00 | 121.00 | 128.00 | OK |
Version: 2.17.3
Check: tests
Result: ERROR
Running ‘DevEvalFileProduct.R’ [1s/1s]
Running ‘DevEvalProduct.R’ [0s/1s]
Running ‘capabilitiesX11.R’ [1s/1s]
Running ‘capturePlot.R’ [1s/1s]
Running ‘dataURI.R’ [0s/1s]
Running ‘devAll.R’ [0s/1s]
Running ‘devDump.R’ [0s/1s]
Running ‘devEqualTypes.R’ [0s/1s]
Running ‘devEval,error.R’ [1s/1s]
Running ‘devEval.R’ [2s/4s]
Running ‘devIsInteractive.R’ [0s/1s]
Running ‘devIsOpen.R’ [0s/1s]
Running ‘devList.R’ [0s/1s]
Running ‘devListIndexOf.R’ [0s/1s]
Running ‘devNew.R’ [1s/1s]
Running ‘devOptions.R’ [1s/2s]
Running ‘devSet.R’ [1s/1s]
Running ‘devTypeName.R’ [0s/1s]
Running ‘favicon.R’ [1s/1s]
Running ‘toNNN.R’ [1s/1s]
Running ‘withPar.R’ [0s/1s]
Running the tests in ‘tests/DevEvalProduct.R’ failed.
Complete output:
> view <- R.devices:::view
>
> message("*** DevEvalProduct ...")
*** DevEvalProduct ...
>
> message("*** DevEvalProduct - subsetting ...")
*** DevEvalProduct - subsetting ...
>
> p <- R.devices:::DevEvalProduct("foo", tags=c("a", "b"))
> for (ff in c("fullname", "name", "tags")) {
+ cat(sprintf("%s: %s\n", ff, substring(p[[ff]], 1, 50)))
+ }
fullname: foo,a,b
name: foo
tags: a,b
>
> library("R.devices")
R.devices v2.17.3 (2025-12-18 06:11:04 UTC) successfully loaded. See ?R.devices for help.
>
> p <- DevEvalProduct("foo", tags=c("a", "b"))
> for (ff in c("fullname", "name", "tags")) {
+ cat(sprintf("%s: %s\n", ff, substring(p[[ff]], 1, 50)))
+ }
fullname: foo,a,b
name: foo
tags: a,b
>
> p <- DevEvalProduct("foo", tags=c("a", "b"))
> valueA <- p[["name"]]
> valueB <- p$name
> stopifnot(identical(valueB, valueA))
> value <- p[["non-existing-field"]]
> stopifnot(is.null(value))
Error: is.null(value) is not TRUE
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc