You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by rv...@apache.org on 2013/04/04 23:09:07 UTC

[1/3] git commit: BIGTOP-904. mahout tests should default to /tmp as a temp location

Updated Branches:
  refs/heads/master 2b35a9255 -> 806e1b538


BIGTOP-904. mahout tests should default to /tmp as a temp location


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/7b2fcf4c
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/7b2fcf4c
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/7b2fcf4c

Branch: refs/heads/master
Commit: 7b2fcf4ce816215ccdcc675f954ed2b0542f022b
Parents: de80808
Author: Roman Shaposhnik <rv...@cloudera.com>
Authored: Thu Apr 4 13:56:16 2013 -0700
Committer: Roman Shaposhnik <rv...@cloudera.com>
Committed: Thu Apr 4 13:57:20 2013 -0700

----------------------------------------------------------------------
 .../itest/mahout/smoke/TestMahoutExamples.groovy   |    8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/7b2fcf4c/bigtop-tests/test-artifacts/mahout/src/main/groovy/org/apache/bigtop/itest/mahout/smoke/TestMahoutExamples.groovy
----------------------------------------------------------------------
diff --git a/bigtop-tests/test-artifacts/mahout/src/main/groovy/org/apache/bigtop/itest/mahout/smoke/TestMahoutExamples.groovy b/bigtop-tests/test-artifacts/mahout/src/main/groovy/org/apache/bigtop/itest/mahout/smoke/TestMahoutExamples.groovy
index e20f131..4e2ae2c 100644
--- a/bigtop-tests/test-artifacts/mahout/src/main/groovy/org/apache/bigtop/itest/mahout/smoke/TestMahoutExamples.groovy
+++ b/bigtop-tests/test-artifacts/mahout/src/main/groovy/org/apache/bigtop/itest/mahout/smoke/TestMahoutExamples.groovy
@@ -34,13 +34,7 @@ public class TestMahoutExamples {
   public static final String TEMP_DIR = "/tmp/mahout.${(new Date().getTime())}";
   public static final String WORK_DIR = TEMP_DIR;
   private static Shell sh = new Shell("/bin/bash -s");
-  public static String download_dir = System.getProperty("mahout.examples.resources.download.path");
-  static {
-    if (download_dir == null) {
-      sh.exec("pwd");
-      download_dir = sh.out[0];
-    }
-  }
+  public static String download_dir = System.getProperty("mahout.examples.resources.download.path") ?: "/tmp" ;
 
   @BeforeClass
   public static void setUp() {


[2/3] git commit: BIGTOP-903. crunch integration tests need to clean up output directory before each individual subtask is run

Posted by rv...@apache.org.
BIGTOP-903. crunch integration tests need to clean up output directory before each individual subtask is run


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

Branch: refs/heads/master
Commit: de808080725d028a8c695d18ee654bc449e11165
Parents: 2b35a92
Author: Roman Shaposhnik <rv...@cloudera.com>
Authored: Thu Apr 4 13:53:46 2013 -0700
Committer: Roman Shaposhnik <rv...@cloudera.com>
Committed: Thu Apr 4 13:57:20 2013 -0700

----------------------------------------------------------------------
 .../itest/crunchsmoke/TestCrunchSmoke.groovy       |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/de808080/bigtop-tests/test-artifacts/crunch/src/main/groovy/org/apache/bigtop/itest/crunchsmoke/TestCrunchSmoke.groovy
----------------------------------------------------------------------
diff --git a/bigtop-tests/test-artifacts/crunch/src/main/groovy/org/apache/bigtop/itest/crunchsmoke/TestCrunchSmoke.groovy b/bigtop-tests/test-artifacts/crunch/src/main/groovy/org/apache/bigtop/itest/crunchsmoke/TestCrunchSmoke.groovy
index 5dd94fd..7b7012c 100644
--- a/bigtop-tests/test-artifacts/crunch/src/main/groovy/org/apache/bigtop/itest/crunchsmoke/TestCrunchSmoke.groovy
+++ b/bigtop-tests/test-artifacts/crunch/src/main/groovy/org/apache/bigtop/itest/crunchsmoke/TestCrunchSmoke.groovy
@@ -50,6 +50,7 @@ public class TestCrunchSmoke {
     ];
 
   private void _runExampleJobs(String algorithm) {
+    sh.exec("hadoop fs -rmr ${EXAMPLES_OUT}");
     sh.exec("${runnerScript} ${crunchJar}" 
       + " org.apache.crunch.examples.${algorithm}"
       + " ${examples.get(algorithm)}"


[3/3] git commit: BIGTOP-905. bump versions of test execution poms to match the BOM

Posted by rv...@apache.org.
BIGTOP-905. bump versions of test execution poms to match the BOM


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/806e1b53
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/806e1b53
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/806e1b53

Branch: refs/heads/master
Commit: 806e1b538a09f8d24f0ee35ab9d66b4ff08eb79d
Parents: 7b2fcf4
Author: Roman Shaposhnik <rv...@cloudera.com>
Authored: Thu Apr 4 14:08:10 2013 -0700
Committer: Roman Shaposhnik <rv...@cloudera.com>
Committed: Thu Apr 4 14:08:10 2013 -0700

----------------------------------------------------------------------
 bigtop-tests/test-execution/smokes/pom.xml |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/806e1b53/bigtop-tests/test-execution/smokes/pom.xml
----------------------------------------------------------------------
diff --git a/bigtop-tests/test-execution/smokes/pom.xml b/bigtop-tests/test-execution/smokes/pom.xml
index 3de4225..dcc27b6 100644
--- a/bigtop-tests/test-execution/smokes/pom.xml
+++ b/bigtop-tests/test-execution/smokes/pom.xml
@@ -37,11 +37,11 @@
     <!--
       BOM definitions
     -->
-    <hadoop.version>2.0.0-SNAPSHOT</hadoop.version>
-    <hbase.version>0.92.1</hbase.version>
-    <pig.version>0.9.2</pig.version>
-    <pig-smoke.version>0.9.2-SNAPSHOT</pig-smoke.version>
-    <sqoop.version>1.4.1-incubating</sqoop.version>
+    <hadoop.version>2.0.4-SNAPSHOT</hadoop.version>
+    <hbase.version>0.94.5</hbase.version>
+    <pig.version>0.11.0</pig.version>
+    <pig-smoke.version>0.11.0-SNAPSHOT</pig-smoke.version>
+    <sqoop.version>1.99.1-incubating</sqoop.version>
     <itest-conf.version>0.6.0-SNAPSHOT</itest-conf.version>
     <itest-common.version>0.6.0-SNAPSHOT</itest-common.version>
     <hadoop-smoke.version>0.6.0-SNAPSHOT</hadoop-smoke.version>