Last updated on 2026-06-14 11:56:53 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.10.1 | 2.60 | 38.52 | 41.12 | OK | |
| r-devel-linux-x86_64-debian-gcc | 0.10.1 | 2.08 | 30.07 | 32.15 | ERROR | |
| r-devel-linux-x86_64-fedora-clang | 0.10.1 | 5.00 | 65.39 | 70.39 | OK | |
| r-devel-linux-x86_64-fedora-gcc | 0.10.1 | 75.52 | OK | |||
| r-devel-windows-x86_64 | 0.10.1 | 7.00 | 59.00 | 66.00 | OK | |
| r-patched-linux-x86_64 | 0.10.1 | 2.77 | 36.71 | 39.48 | OK | |
| r-release-linux-x86_64 | 0.10.1 | 2.56 | 36.79 | 39.35 | OK | |
| r-release-macos-arm64 | 0.10.1 | 1.00 | 17.00 | 18.00 | OK | |
| r-release-macos-x86_64 | 0.10.1 | 2.00 | 61.00 | 63.00 | OK | |
| r-release-windows-x86_64 | 0.10.1 | 8.00 | 59.00 | 67.00 | OK | |
| r-oldrel-macos-arm64 | 0.10.1 | 1.00 | 47.00 | 48.00 | OK | |
| r-oldrel-macos-x86_64 | 0.10.1 | 2.00 | 149.00 | 151.00 | OK | |
| r-oldrel-windows-x86_64 | 0.10.1 | 8.00 | 69.00 | 77.00 | OK |
Version: 0.10.1
Check: tests
Result: ERROR
Running ‘test-aperm.R’ [1s/1s]
Running ‘test-as.listenv.R’ [1s/1s]
Running ‘test-as.vector.R’ [1s/1s]
Running ‘test-get_variable,dimensions.R’ [0s/1s]
Running ‘test-get_variable.R’ [0s/1s]
Running ‘test-lapply.R’ [0s/1s]
Running ‘test-listenv,dimensions.R’ [1s/1s]
Running ‘test-listenv.R’ [1s/1s]
Running ‘test-parse_env_subset,dimensions.R’ [1s/1s]
Running ‘test-parse_env_subset.R’ [1s/1s]
Running ‘test-undim.R’ [0s/1s]
Running ‘test-utils,conditions.R’ [0s/1s]
Running ‘test-utils.R’ [0s/1s]
Running the tests in ‘tests/test-lapply.R’ failed.
Complete output:
> #! /usr/bin/env Rscript
> ## This runs testme test script inst/testme/test-lapply.R
> ## Don't edit - it was autogenerated by inst/testme/deploy.R
> listenv:::testme("lapply")
Test 'lapply' ...
chr "none"
> library("listenv")
> message("*** lapply() ...")
*** lapply() ...
> x <- as.list(1:6)
> names(x) <- letters[seq_along(x)]
> y <- as.listenv(x)
> z0 <- lapply(x, FUN = function(x) x^2)
> z1 <- lapply(y, FUN = function(x) x^2)
> stopifnot(identical(z1, z0))
> message("*** lapply() ... DONE")
*** lapply() ... DONE
> message("*** apply() ...")
*** apply() ...
> x <- matrix(as.list(1:6), nrow = 2)
> rownames(x) <- letters[seq_len(nrow(x))]
> colnames(x) <- LETTERS[seq_len(ncol(x))]
> y <- as.listenv(x)
> z0 <- apply(x, MARGIN = 1, FUN = function(x) sum(unlist(x)))
> aperm.listenv <- function(a, ...) {
+ a <- as.list(a)
+ a <- aperm(a, ...)
+ as.listenv(a)
+ }
> z1 <- apply(y, MARGIN = 1, FUN = function(x) sum(unlist(x)))
Error in attributes(newX) <- list(dim = c(prod(d.call), d2)) :
invalid first argument, must be vector (list or atomic)
Calls: <Anonymous> ... testme_run_test -> source -> withVisible -> eval -> eval -> apply
Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc