You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by rx...@apache.org on 2014/09/04 19:29:13 UTC

git commit: [SPARK-3401][PySpark] Wrong usage of tee command in python/run-tests

Repository: spark
Updated Branches:
  refs/heads/master 905861906 -> 4feb46c5f


[SPARK-3401][PySpark] Wrong usage of tee command in python/run-tests

Author: Kousuke Saruta <sa...@oss.nttdata.co.jp>

Closes #2272 from sarutak/SPARK-3401 and squashes the following commits:

2b35a59 [Kousuke Saruta] Modified wrong usage of tee command in python/run-tests


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/4feb46c5
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/4feb46c5
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/4feb46c5

Branch: refs/heads/master
Commit: 4feb46c5feca8d48ec340dc9c8d0eccbcd41f505
Parents: 9058619
Author: Kousuke Saruta <sa...@oss.nttdata.co.jp>
Authored: Thu Sep 4 10:29:11 2014 -0700
Committer: Reynold Xin <rx...@apache.org>
Committed: Thu Sep 4 10:29:11 2014 -0700

----------------------------------------------------------------------
 python/run-tests | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/spark/blob/4feb46c5/python/run-tests
----------------------------------------------------------------------
diff --git a/python/run-tests b/python/run-tests
index 7b1ee3e..d671da4 100755
--- a/python/run-tests
+++ b/python/run-tests
@@ -33,7 +33,7 @@ rm -rf metastore warehouse
 
 function run_test() {
     echo "Running test: $1"
-    SPARK_TESTING=1 $FWDIR/bin/pyspark $1 2>&1 | tee -a > unit-tests.log
+    SPARK_TESTING=1 $FWDIR/bin/pyspark $1 2>&1 | tee -a unit-tests.log
     FAILED=$((PIPESTATUS[0]||$FAILED))
 
     # Fail and exit on the first test failure.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org