R version 4.6.0 RC (2026-04-17 r89912 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 87 | PASS 5 ] ══ Skipped tests (87) ══════════════════════════════════════════════════════════ • On CRAN (87): 'test-loops.R:3:1', 'test-unary-intrinsics.R:3:1', 'test-add.R:3:1', 'test-allocatable-locals.R:1:1', 'test-api-drives-internals.R:4:1', 'test-arg-not-declared-name-collision.R:1:1', 'test-array-reshape.R:1:1', 'test-as-double.R:1:1', 'test-assignment-writes-to-dest.R:1:1', 'test-bind.R:3:1', 'test-block-scopes.R:1:1', 'test-c-bridge-hoist.R:3:1', 'test-c-wrapper-public-api-coverage.R:1:1', 'test-classes.R:3:1', 'test-closure-hoist-snapshots.R:1:1', 'test-closure-semantics-grid.R:1:1', 'test-compile-package.R:3:1', 'test-codecov-coverage.R:3:1', 'test-compiler.R:3:1', 'test-declare-type.R:3:1', 'test-dims2c-length.R:1:1', 'test-dims2f.R:3:1', 'test-div-cast.R:1:1', 'test-div-mod.R:3:1', 'test-dotted-arg-size-expr.R:3:1', 'test-dotted-symbols.R:1:1', 'test-drop.R:3:1', 'test-error-handling.R:1:1', 'test-errors.R:1:1', 'test-example-convolve.R:3:1', 'test-example-heat_diffusion.R:3:1', 'test-example-roll_mean.R:3:1', 'test-example-viterbi.R:3:1', 'test-fallthrough-assignment.R:1:1', 'test-flang-preference.R:1:1', 'test-float-to-int.R:3:1', 'test-floor-large.R:7:1', 'test-for-iterables.R:3:1', 'test-friendly-size.R:1:1', 'test-hoist-mask.R:3:1', 'test-ifelse.R:3:1', 'test-internal-utils.R:3:1', 'test-local-closure-control-flow.R:1:1', 'test-local-closure-optional-args-more.R:3:1', 'test-logical-indexing.R:4:1', 'test-logical.R:3: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-matrix-parse.R:3:1', 'test-matrix-vector-recycling-nrow.R:3:1', 'test-matrix.R:3:1', 'test-multiple-return.R:1:1', 'test-openmp-error-snapshots.R:1:1', 'test-openmp-parallelization.R:1:1', 'test-openmp-utils.R:1:1', 'test-package-internal-procs.R:1:1', 'test-parallel-declare.R:1:1', 'test-parentheses.R:3:1', 'test-qr-solve.R:1:1', 'test-quick-context.R:1:1', 'test-quick-name.R:1:1', 'test-quick-windows-paths.R:1:1', 'test-r2f-r-attr.R:1:1', 'test-r2f-registry.R:3:1', 'test-reduction-scalars.R:1:1', 'test-rep-int.R:1:1', 'test-rev.R:1:1', 'test-runif.R:1:1', 'test-sapply-closures.R:1:1', 'test-scope-state.R:3:1', 'test-seq.R:3:1', 'test-size-constraint.R:3:1', 'test-size-expr-abs.R:3:1', 'test-size-expr-dim-nrow-ncol.R:3:1', 'test-sizes-arithmetic.R:3:1', 'test-subscript-drop-length1-ranges.R:1:1', 'test-subscript-hoisted-temporaries.R:1:1', 'test-subset-reduction.R:1:1', 'test-superassign-logical-subscript.R:1:1', 'test-superassignment-semantics-variety.R:1:1', 'test-superassignment-snapshots.R:1:1', 'test-superassignment.R:1:1', 'test-svd.R:1:1', 'test-var-storage-bytes.R:1:1', 'test-which.R:3:1' [ FAIL 0 | WARN 0 | SKIP 87 | PASS 5 ] > > proc.time() user system elapsed 3.28 0.18 12.98