Repository: accumulo
Updated Branches:
  refs/heads/1.5.1-SNAPSHOT 39613b4b9 -> db367679d


ACCUMULO-2385 fix error running test against hadoop 1.0


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

Branch: refs/heads/1.5.1-SNAPSHOT
Commit: 4dd2d662cabb8372acaba36d58820c804ecd53ed
Parents: eea885a
Author: Eric Newton <eric.new...@gmail.com>
Authored: Wed Feb 19 17:21:43 2014 -0500
Committer: Eric Newton <eric.new...@gmail.com>
Committed: Wed Feb 19 17:21:43 2014 -0500

----------------------------------------------------------------------
 test/system/auto/simple/mapreduce.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/4dd2d662/test/system/auto/simple/mapreduce.py
----------------------------------------------------------------------
diff --git a/test/system/auto/simple/mapreduce.py 
b/test/system/auto/simple/mapreduce.py
index a63df9a..5ac06e6 100755
--- a/test/system/auto/simple/mapreduce.py
+++ b/test/system/auto/simple/mapreduce.py
@@ -71,6 +71,7 @@ class MapReduceTest(TestUtilsMixin,unittest.TestCase):
         start = globa(os.path.join('lib','accumulo-start.jar'))
         jcommander = globa(os.path.join('lib','jcommander.jar'))
         trace = globa(os.path.join('lib','accumulo-trace.jar'))
+        guava = globa(os.path.join('lib','guava.jar'))
         zkjar = 
globbase(os.getenv("ZOOKEEPER_HOME"),"zookeeper*[!javadoc|src|bin].jar")
         self.createInputTableInAccumulo();
         #Arguments for the Example Class
@@ -83,7 +84,7 @@ class MapReduceTest(TestUtilsMixin,unittest.TestCase):
         #MapReduce class to run
         mapred_class= [self.accumulo_sh(),self.example_class_to_run]
         #classes needed to run the mapreduce
-        libjars = 
["-libjars",",".join([zkjar,thriftjar,examples,core,fate,trace,jcommander])]
+        libjars = 
["-libjars",",".join([zkjar,thriftjar,examples,core,fate,trace,jcommander,guava])]
         cmd = mapred_class+libjars+arg_list
         if(self.isAccumuloRunning()):
             log.debug("COMMAND:"+str(cmd))

Reply via email to