aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/inst/tests/testthat/test_includeJAR.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/pkg/inst/tests/testthat/test_includeJAR.R')
-rw-r--r--R/pkg/inst/tests/testthat/test_includeJAR.R7
1 files changed, 3 insertions, 4 deletions
diff --git a/R/pkg/inst/tests/testthat/test_includeJAR.R b/R/pkg/inst/tests/testthat/test_includeJAR.R
index f89aa8e507..512dd39cb2 100644
--- a/R/pkg/inst/tests/testthat/test_includeJAR.R
+++ b/R/pkg/inst/tests/testthat/test_includeJAR.R
@@ -21,10 +21,9 @@ runScript <- function() {
sparkTestJarPath <- "R/lib/SparkR/test_support/sparktestjar_2.10-1.0.jar"
jarPath <- paste("--jars", shQuote(file.path(sparkHome, sparkTestJarPath)))
scriptPath <- file.path(sparkHome, "R/lib/SparkR/tests/testthat/jarTest.R")
- submitPath <- file.path(sparkHome, "bin/spark-submit")
- res <- system2(command = submitPath,
- args = c(jarPath, scriptPath),
- stdout = TRUE)
+ submitPath <- file.path(sparkHome, paste("bin/", determineSparkSubmitBin(), sep = ""))
+ combinedArgs <- paste(jarPath, scriptPath, sep = " ")
+ res <- launchScript(submitPath, combinedArgs, capture = TRUE)
tail(res, 2)
}