add object store target to test script

This commit is contained in:
Ari Lazier 2016-03-03 14:58:05 -08:00
parent 641eb37b2c
commit fd9501458d
1 changed files with 6 additions and 0 deletions

View File

@ -143,6 +143,12 @@ case "$TARGET" in
echo "********* File location: $(pwd)/tests.xml *********";
cat tests.xml
;;
"object-store")
pushd src/object-store
brew install cmake
cmake .
make run-tests
;;
*)
echo "Invalid target '${TARGET}'"
exit 1