aboutsummaryrefslogtreecommitdiff
path: root/R/pkg/inst/tests
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-04-21 16:09:50 -0700
committerDavies Liu <davies.liu@gmail.com>2016-04-21 16:09:50 -0700
commit411454475a031869eb7dc0c5fd84f41b3fdfa295 (patch)
treee454f88f6cbbb7ee87157ef6962573015e4bc645 /R/pkg/inst/tests
parentf82aa82480d95451510ee7a74c52e83e98c8b794 (diff)
downloadspark-411454475a031869eb7dc0c5fd84f41b3fdfa295.tar.gz
spark-411454475a031869eb7dc0c5fd84f41b3fdfa295.tar.bz2
spark-411454475a031869eb7dc0c5fd84f41b3fdfa295.zip
[SPARK-14780] [R] Add `setLogLevel` to SparkR
## What changes were proposed in this pull request? This PR aims to add `setLogLevel` function to SparkR shell. **Spark Shell** ```scala scala> sc.setLogLevel("ERROR") ``` **PySpark** ```python >>> sc.setLogLevel("ERROR") ``` **SparkR (this PR)** ```r > setLogLevel(sc, "ERROR") NULL ``` ## How was this patch tested? Pass the Jenkins tests including a new R testcase. Author: Dongjoon Hyun <dongjoon@apache.org> Closes #12547 from dongjoon-hyun/SPARK-14780.
Diffstat (limited to 'R/pkg/inst/tests')
-rw-r--r--R/pkg/inst/tests/testthat/test_context.R5
1 files changed, 5 insertions, 0 deletions
diff --git a/R/pkg/inst/tests/testthat/test_context.R b/R/pkg/inst/tests/testthat/test_context.R
index 9f51161230..ffa067eb5e 100644
--- a/R/pkg/inst/tests/testthat/test_context.R
+++ b/R/pkg/inst/tests/testthat/test_context.R
@@ -90,6 +90,11 @@ test_that("job group functions can be called", {
clearJobGroup(sc)
})
+test_that("utility function can be called", {
+ sc <- sparkR.init()
+ setLogLevel(sc, "ERROR")
+})
+
test_that("getClientModeSparkSubmitOpts() returns spark-submit args from whitelist", {
e <- new.env()
e[["spark.driver.memory"]] <- "512m"