Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/16254#discussion_r91949387
  
    --- Diff: core/src/test/scala/org/apache/spark/rdd/PipedRDDSuite.scala ---
    @@ -142,17 +147,23 @@ class PipedRDDSuite extends SparkFunSuite with 
SharedSparkContext {
         val piped = data.pipe("wc -c")
         assert(piped.count == 8)
         val charCounts = piped.map(_.trim.toInt).collect().toSet
    -    assert(Set(0, 4, 5) == charCounts)
    +    val expected = if (Utils.isWindows) {
    +      // Note that newline character on Windows is \r\n which are two.
    +      Set(0, 5, 6)
    +    } else {
    +      Set(0, 4, 5)
    +    }
    +    assert(expected == charCounts)
       }
     
       test("pipe with env variable") {
    -    if (testCommandAvailable("printenv")) {
    +    if (testCommandAvailable(envCommand)) {
           val nums = sc.makeRDD(Array(1, 2, 3, 4), 2)
    -      val piped = nums.pipe(Seq("printenv", "MY_TEST_ENV"), 
Map("MY_TEST_ENV" -> "LALALA"))
    +      val piped = nums.pipe(s"$envCommand MY_TEST_ENV", Map("MY_TEST_ENV" 
-> "LALALA"))
           val c = piped.collect()
    -      assert(c.size === 2)
    -      assert(c(0) === "LALALA")
    -      assert(c(1) === "LALALA")
    +      assert(c.length === 2)
    +      assert(c(0).contains("LALALA"))
    +      assert(c(1).contains("LALALA"))
    --- End diff --
    
    Can you check `c(0).stripPrefix("MY_TEST_ENV=") === "LALALA")`? 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to