R Under development (unstable) (2024-07-01 r86857 ucrt) -- "Unsuffered Consequences" Copyright (C) 2024 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. > Sys.unsetenv("R_TESTS") > if (requireNamespace("RUnit", quietly=TRUE) && requireNamespace("bspline", quietly=TRUE)) { + testSuite <- RUnit::defineTestSuite( + name = "bspline unit tests", + dirs = system.file("unitTests", package = "bspline"), + testFuncRegexp = "^[Tt]est.+", + rngKind = "default", + rngNormalKind = "default" + ) + tests <- RUnit::runTestSuite(testSuite) + + RUnit::printTextProtocol(tests) + + if (RUnit::getErrors(tests)$nFail > 0) stop("RUnit test failure") + if (RUnit::getErrors(tests)$nErr > 0) stop("Errors in RUnit tests") + } Executing test function test.bcurve.ex ... done successfully. Executing test function test.bsc0 ... done successfully. Executing test function test.bsc1 ... done successfully. Executing test function test.bsc2 ... done successfully. Executing test function test.dbsp.ex ... done successfully. Executing test function test.fitsmbsp.ex ... [1] "r2=" "0.373974066239554" done successfully. Executing test function test.ibsp ... done successfully. Executing test function test.ipk ... done successfully. Executing test function test.jacw2 ... Error : nrow(qw) (=4) must be equal to 2 to be consistent with dim(jac)=(13,4,2). done successfully. Executing test function test.pbsc.ex ... done successfully. Executing test function test.smbsp.ex ... done successfully. Executing test function test.smbsp3 ... done successfully. RUNIT TEST PROTOCOL -- Tue Jul 2 16:51:40 2024 *********************************************** Number of test functions: 12 Number of errors: 0 Number of failures: 0 1 Test Suite : bspline unit tests - 12 test functions, 0 errors, 0 failures Details *************************** Test Suite: bspline unit tests Test function regexp: ^[Tt]est.+ Test file regexp: ^runit.+\.[rR]$ Involved directory: D:/RCompile/CRANincoming/R-devel/lib/bspline/unitTests --------------------------- Test file: D:/RCompile/CRANincoming/R-devel/lib/bspline/unitTests/runit.bspline.R test.bcurve.ex: (1 checks) ... OK (0 seconds) test.bsc0: (5 checks) ... OK (0 seconds) test.bsc1: (5 checks) ... OK (0 seconds) test.bsc2: (3 checks) ... OK (0 seconds) test.dbsp.ex: (1 checks) ... OK (0.02 seconds) test.fitsmbsp.ex: (1 checks) ... OK (0.06 seconds) test.ibsp: (2 checks) ... OK (0.02 seconds) test.ipk: (1 checks) ... OK (0 seconds) test.jacw2: (3 checks) ... OK (0 seconds) test.pbsc.ex: (1 checks) ... OK (0 seconds) test.smbsp.ex: (1 checks) ... OK (0 seconds) test.smbsp3: (5 checks) ... OK (0 seconds) > > proc.time() user system elapsed 0.43 0.10 0.53