From fd9501458dc01f7221dfae22835dd1fc76c8fcb9 Mon Sep 17 00:00:00 2001 From: Ari Lazier Date: Thu, 3 Mar 2016 14:58:05 -0800 Subject: [PATCH] add object store target to test script --- scripts/test.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/test.sh b/scripts/test.sh index 38b9eac7..effa6409 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -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