diff options
author | Joe Buck <jbbuck@gmail.com> | 2013-03-12 00:04:23 -0700 |
---|---|---|
committer | Joe Buck <jbbuck@gmail.com> | 2013-03-12 01:23:35 -0700 |
commit | 579d4ad77d31c28438c17553d13f3929200f7a4d (patch) | |
tree | abf0b397842235c1c0e1502e2b39e75a55de8abb /qa | |
parent | 09fa711093920e55bdf5c7c9fd762b0f2744fbfc (diff) | |
download | ceph-579d4ad77d31c28438c17553d13f3929200f7a4d.tar.gz |
testing: update wordcount to new code layout.
Signed-off-by: Joe Buck <jbbuck@gmail.com>
Diffstat (limited to 'qa')
-rwxr-xr-x | qa/workunits/hadoop-wordcount/test.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qa/workunits/hadoop-wordcount/test.sh b/qa/workunits/hadoop-wordcount/test.sh index 0ba63bb9c16..5d3f4ccc54f 100755 --- a/qa/workunits/hadoop-wordcount/test.sh +++ b/qa/workunits/hadoop-wordcount/test.sh @@ -10,9 +10,9 @@ command1="mkdir -p $TESTDIR/hadoop_input" command2="wget http://ceph.com/qa/hadoop_input_files.tar -O $TESTDIR/hadoop_input/files.tar" command3="cd $TESTDIR/hadoop_input" command4="tar -xf $TESTDIR/hadoop_input/files.tar" -command5="$TESTDIR/hadoop/bin/hadoop fs -mkdir wordcount_input" -command6="$TESTDIR/hadoop/bin/hadoop fs -put $TESTDIR/hadoop_input/*txt wordcount_input/" -command7="$TESTDIR/hadoop/bin/hadoop jar $TESTDIR/hadoop/build/hadoop-example*jar wordcount wordcount_input wordcount_output" +command5="$TESTDIR/apache_hadoop/bin/hadoop fs -mkdir wordcount_input" +command6="$TESTDIR/apache_hadoop/bin/hadoop fs -put $TESTDIR/hadoop_input/*txt wordcount_input/" +command7="$TESTDIR/apache_hadoop/bin/hadoop jar $TESTDIR/apache_hadoop/build/hadoop-example*jar wordcount wordcount_input wordcount_output" command8="rm -rf $TESTDIR/hadoop_input" |