47 lines
896 B
Bash
Raw Normal View History

2025-01-12 00:52:51 +08:00
#!/bin/sh
LOGFILE=test.log
R --vanilla --slave > ${LOGFILE} 2>&1 <<'EOF'
library(doParallel)
library(RUnit)
verbose <- as.logical(Sys.getenv('FOREACH_VERBOSE', 'FALSE'))
library(doParallel)
registerDoParallel()
options(warn=1)
options(showWarnCalls=TRUE)
cat('Starting test at', date(), '\n')
cat(sprintf('doParallel version: %s\n', getDoParVersion()))
cat(sprintf('Running with %d worker(s)\n', getDoParWorkers()))
tests <- c('options.R')
errcase <- list()
for (f in tests) {
cat('\nRunning test file:', f, '\n')
t <- runTestFile(f)
e <- getErrors(t)
if (e$nErr + e$nFail > 0) {
errcase <- c(errcase, t)
print(t)
}
}
if (length(errcase) == 0) {
cat('*** Ran all tests successfully ***\n')
} else {
cat('!!! Encountered', length(errcase), 'problems !!!\n')
for (t in errcase) {
print(t)
}
}
stopImplicitCluster()
cat('Finished test at', date(), '\n')
EOF