R Under development (unstable) (2026-05-15 r90061 ucrt) -- "Unsuffered Consequences" 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. > ## Cap BLAS/OpenMP threads so check-farm machines with multi-threaded > ## BLAS (OpenBLAS, MKL) don't make CPU time exceed elapsed by >2x. CRAN > ## permits at most 2 cores in tests. The package uses no explicit > ## parallelism; the only multi-threaded path is Matrix's > ## crossprod/tcrossprod inheriting BLAS threading on tiny test matrices. > ## (The data.table/biblionetwork equivalence tests, the previous source > ## of >2x CPU, now live outside the package in > ## local_testing_and_equivalence/ and are not part of R CMD check.) > Sys.setenv(OMP_THREAD_LIMIT = "2", OMP_NUM_THREADS = "2") > > library(testthat) > library(bibnets) > > test_check("bibnets") Written: D:\temp\2026_05_16_14_45_17_12791\Rtmpc3A6h0/nodes.csv D:\temp\2026_05_16_14_45_17_12791\Rtmpc3A6h0/edges.csv Written: D:\temp\2026_05_16_14_45_17_12791\Rtmpc3A6h0\file75b1c70fc15dc.graphml Read 2 files: 2 rows total [ FAIL 0 | WARN 0 | SKIP 0 | PASS 1122 ] > > proc.time() user system elapsed 16.04 3.06 19.20