ceph/qa/workunits/hadoop-internal-tests/test.sh
Joe Buck 00b1186922 testing: add workunit to run hadoop internal tests.
This workunit runs the internal tests for our local branch of hadoop-common.
Requires ant be installed on the host running the test.

Signed-off-by: Joe Buck <jbbuck@gmail.com>
2013-01-22 12:43:37 -08:00

25 lines
527 B
Bash
Executable File

#!/bin/sh -e
BASE=/tmp/cephtest
TLIB=binary/usr/local/lib
echo "starting hadoop-internal-tests tests"
export LD_LIBRARY_PATH=$BASE/$TLIB
command1="cd $BASE/hadoop"
command2="ant -Dextra.library.path=$BASE/$TLIB -Dceph.conf.file=$BASE/ceph.conf test -Dtestcase=TestCephFileSystem"
#print out the command
echo "----------------------"
echo $command1
echo "----------------------"
echo $command2
echo "----------------------"
#now execute the command
$command1
$command2
echo "completed hadoop-internal-tests tests"
exit 0