R Under development (unstable) (2025-05-30 r88253 ucrt) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(testthat) > library(gWidgets2) Loading required package: digest > options(guiToolkit="tcltk") > > f <- list.files(system.file("tests", package="gWidgets2"), full=T) > f <- Filter(function(x) !grepl("README", x), f) > f <- Filter(function(x) !grepl("html", x), f) > ## issues > f <- Filter(function(x) !grepl("df.R", x), f) > f <- Filter(function(x) !grepl("text.R", x), f) > f <- Filter(function(x) !grepl("tree.R", x), f) > > sapply(f, function(i) { + message("testing ", i) + source(i) + }) testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/button.R Loading required package: gWidgets2tcltk Loading required package: memoise Loading required package: tcltk testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/calendar.R testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/checkbox.R testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/combobox.R testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/containers.R testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/edit.R testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/label.R No markup is available for labels in tcltk. Use font<- instead. Stripping tags. testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/notebook.R testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/radio.R testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/slider.R [1] "call handler" testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/statusbar.R testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/table.R Widths are not the correct length. Expecting 2, got 4 testing D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/window.R D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/button.R value "new label" visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/calendar.R value 2000-01-31 visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/checkbox.R value character,4 visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/combobox.R value 25 visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/containers.R value visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/edit.R value "added" visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/label.R value "two" visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/notebook.R value 2 visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/radio.R value 2 visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/slider.R value 5 visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/statusbar.R value "new" visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/table.R value 2 visible FALSE D:/RCompile/CRANpkg/lib/4.6/gWidgets2/tests/window.R value visible TRUE > > proc.time() user system elapsed 4.54 0.65 6.26