Last updated on 2026-05-02 20:50:12 CEST.
| Flavor | Version | Tinstall | Tcheck | Ttotal | Status | Flags |
|---|---|---|---|---|---|---|
| r-devel-linux-x86_64-debian-clang | 0.4.1 | 3.33 | 79.35 | 82.68 | NOTE | |
| r-devel-linux-x86_64-debian-gcc | 0.4.1 | 2.80 | 54.80 | 57.60 | NOTE | |
| r-devel-linux-x86_64-fedora-clang | 0.4.1 | 129.40 | OK | |||
| r-devel-linux-x86_64-fedora-gcc | 0.4.1 | 146.76 | OK | |||
| r-devel-windows-x86_64 | 0.4.1 | 11.00 | 132.00 | 143.00 | ERROR | |
| r-patched-linux-x86_64 | 0.4.1 | 4.19 | 74.16 | 78.35 | OK | |
| r-release-linux-x86_64 | 0.4.1 | 3.63 | 74.13 | 77.76 | OK | |
| r-release-macos-arm64 | 0.4.1 | 1.00 | 27.00 | 28.00 | OK | |
| r-release-macos-x86_64 | 0.4.1 | 4.00 | 101.00 | 105.00 | OK | |
| r-release-windows-x86_64 | 0.4.1 | 9.00 | 143.00 | 152.00 | OK | |
| r-oldrel-macos-arm64 | 0.4.1 | OK | ||||
| r-oldrel-macos-x86_64 | 0.4.1 | 4.00 | 88.00 | 92.00 | OK | |
| r-oldrel-windows-x86_64 | 0.4.1 | 12.00 | 138.00 | 150.00 | OK |
Version: 0.4.1
Check: CRAN incoming feasibility
Result: NOTE
Maintainer: ‘Daniel Mastropietro <mastropi@uwalumni.com>’
No Authors@R field in DESCRIPTION.
Please add one, modifying
Authors@R: person(given = "Daniel",
family = "Mastropietro",
role = c("aut", "cre"),
email = "mastropi@uwalumni.com")
as necessary.
Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc
Version: 0.4.1
Check: examples
Result: ERROR
Running examples in 'envnames-Ex.R' failed
The error most likely occurred in:
> ### Name: envnames-package
> ### Title: Track user-defined environment names
> ### Aliases: envnames-package envnames
> ### Keywords: package environment
>
> ### ** Examples
>
> library(envnames)
> rm(list=ls())
>
> ### Example 1: Retrieve the names of user-defined environments (created with new.env())
> # Create new environments
> env1 <- new.env() # Environment in .GlobalEnv
> env2 <- new.env() # Environment in .GlobalEnv
> env3 <- new.env(parent=baseenv()) # Environment whose enclosure or parent environment
> # is the base environment
> # (as opposed to the global environment)
> env_of_envs <- new.env() # User-defined environment that contains other environments
> with(env_of_envs, env11 <- new.env()) # Environment defined inside environment env_of_envs
>
> # Retrieve the environment name
> environment_name(env1) # named array with value "env1" and name "R_GlobalEnv"
R_GlobalEnv package:envnames$testenv
"env1" "env1"
> environment_name(env3) # named array with value "env3" and name "R_GlobalEnv"
[1] "env3"
> environment_name(env9) # NULL (env9 does not exist)
NULL
> environment_name(env_of_envs) # named array with value "env_of_envs" and name
[1] "env_of_envs"
> # "R_GlobalEnv"
> # (2018/11/19) THE FOLLOWING IS AN IMPORTANT TEST BECAUSE IT TESTS THE CASE WHERE THE ADDRESS-NAME
> # LOOKUP TABLE CONTAINS ONLY ONE ROW (namely the row for the env11 environment present in
> # env_of_envs), WHICH CANNOT BE TESTED VIA TESTS USING THE testthat PACKAGE BECAUSE IN THAT CONTEXT
> # THE LOOKUP TABLE NEVER HAS ONLY ONE ROW!
> # (for more info about this limitation see the test commented out at the beginning of
> # test-get_env_names.r.
> environment_name(env11, envir=env_of_envs) # "env11"
Error in as.data.frame.vector(x, ..., nm = nm) :
row names contain missing values
Calls: environment_name ... as.data.frame -> as.data.frame.character -> as.data.frame.vector
Execution halted
Flavor: r-devel-windows-x86_64