R version 4.6.0 beta (2026-04-16 r89899 ucrt) -- "Because it was There" Copyright (C) 2026 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. > # This file is part of the standard setup for testthat. > # It is recommended that you do not modify it. > # > # Where should you do additional test configuration? > # Learn more about the roles of various files in: > # * https://r-pkgs.org/testing-design.html#sec-tests-files-overview > # * https://testthat.r-lib.org/articles/special-files.html > > # covr doesn't merge coverage across testthat worker processes, so parallel test > # execution can undercount coverage substantially. > if (identical(Sys.getenv("R_COVR"), "true")) { + Sys.setenv(TESTTHAT_PARALLEL = "false") + } > > library(testthat) > if (identical(Sys.getenv("R_COVR"), "true")) { + # covr can emit harmless warnings while instrumenting quickr's namespace; keep + # coverage runs clean. + suppressWarnings(library(quickr)) + } else { + library(quickr) + } > > test_check("quickr") Starting 2 test processes. [ FAIL 0 | WARN 0 | SKIP 94 | PASS 818 ] ══ Skipped tests (94) ══════════════════════════════════════════════════════════ • On CRAN (94): 'test-unary-intrinsics.R:3:1', 'test-loops.R:3:1', 'test-loops.R:19:1', 'test-loops.R:36:1', 'test-loops.R:52:1', 'test-loops.R:65:1', 'test-loops.R:79:1', 'test-loops.R:95:1', 'test-api-drives-internals.R:4:1', 'test-allocatable-locals.R:157:1', 'test-block-scopes.R:1:1', 'test-block-scopes.R:30:1', 'test-c-bridge-hoist.R:3:1', 'test-closure-hoist-snapshots.R:1:1', 'test-closure-hoist-snapshots.R:15:1', 'test-closure-semantics-grid.R:1:1', 'test-codecov-coverage.R:3:1', 'test-compile-package.R:102:3', 'test-compile-package.R:122:3', 'test-compile-package.R:151:3', 'test-compile-package.R:167:3', 'test-compile-package.R:192:3', 'test-bind.R:103:1', 'test-dims2c-length.R:1:1', 'test-dims2c-length.R:14:1', 'test-dims2c-length.R:27:1', 'test-dims2c-length.R:46:1', 'test-dims2f.R:3:1', 'test-dims2f.R:18:1', 'test-dims2f.R:32:1', 'test-div-cast.R:1:1', 'test-div-cast.R:15:1', 'test-div-cast.R:29:1', 'test-div-cast.R:43:1', 'test-div-cast.R:59:1', 'test-div-mod.R:3:1', 'test-drop.R:3:1', 'test-errors.R:1:1', 'test-errors.R:72:1', 'test-error-handling.R:106:1', 'test-error-handling.R:121:1', 'test-example-convolve.R:3:1', 'test-example-roll_mean.R:3:1', 'test-example-heat_diffusion.R:3:1', 'test-example-heat_diffusion.R:93:1', 'test-example-viterbi.R:3:1', 'test-example-viterbi.R:121:1', 'test-float-to-int.R:3:1', 'test-float-to-int.R:16:1', 'test-float-to-int.R:41:1', 'test-for-iterables.R:3:1', 'test-hoist-mask.R:3:1', 'test-local-closure-control-flow.R:144:1', 'test-logical-indexing.R:4:1', 'test-logical-indexing.R:22:1', 'test-logical-indexing.R:40:1', 'test-logical-indexing.R:240:1', 'test-machine.R:1:1', 'test-matrix-inference.R:1:1', 'test-matrix-lapack.R:1:1', 'test-matrix-mul.R:1:1', 'test-logical.R:3:1', 'test-logical.R:18:1', 'test-logical.R:84:1', 'test-openmp-error-snapshots.R:1:1', 'test-openmp-parallelization.R:48:3', 'test-openmp-parallelization.R:179:3', 'test-openmp-parallelization.R:198:3', 'test-openmp-parallelization.R:220:3', 'test-parallel-declare.R:2:3', 'test-parallel-declare.R:29:3', 'test-parallel-declare.R:68:3', 'test-parallel-declare.R:82:3', 'test-parallel-declare.R:105:3', 'test-parallel-declare.R:131:3', 'test-parallel-declare.R:166:3', 'test-matrix.R:3:1', 'test-matrix.R:75:1', 'test-parentheses.R:3:1', 'test-parentheses.R:25:1', 'test-qr-solve.R:1:1', 'test-rev.R:1:1', 'test-sapply-closures.R:1:1', 'test-runif.R:1:1', 'test-runif.R:49:1', 'test-size-constraint.R:3:1', 'test-subset-reduction.R:1:1', 'test-superassignment-snapshots.R:1:1', 'test-superassignment-snapshots.R:24:1', 'test-superassignment-snapshots.R:41:1', 'test-superassignment-snapshots.R:63:1', 'test-svd.R:1:1', 'test-which.R:3:1', 'test-which.R:95:1' [ FAIL 0 | WARN 0 | SKIP 94 | PASS 818 ] > > proc.time() user system elapsed 6.93 0.50 1355.68