Skip to content
Snippets Groups Projects
Commit 24e50167 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

[GR-5233] Fixes for package testing.

PullRequest: fastr/1168
parents ab02db04 7b1b3834
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ public class RRuntime {
//@formatter:off
// Parts of the welcome message originate from GNU R.
public static final String WELCOME_MESSAGE =
"FastR version " + RVersionNumber.FULL + "\n" +
"R version " + RVersionNumber.FULL + " (FastR)\n" +
"Copyright (c) 2013-17, Oracle and/or its affiliates\n" +
"Copyright (c) 1995-2016, The R Core Team\n" +
"Copyright (c) 2016 The R Foundation for Statistical Computing\n" +
......
......@@ -810,7 +810,7 @@ system.test <- function(pkgname) {
# we want to stop tests that hang, but some packages have many tests
# each of which spawns a sub-process (over which we have no control)
# so we time out the entire set after 20 minutes.
rc <- system2(rscript, args, env="FASTR_PROCESS_TIMEOUT=20")
rc <- system2(rscript, args, env=c("FASTR_PROCESS_TIMEOUT=20", paste0("R_LIBS_USER=",shQuote(lib.install)),"R_LIBS="))
rc
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment