From 8b87819b9f374f78d13746878d6ed7a260a8ae9a Mon Sep 17 00:00:00 2001 From: Peter Portante Date: Wed, 19 Dec 2012 00:01:13 -0500 Subject: object-storage: add UFO unit tests Run the UFO unit tests following the main GlusterFS unit tests. The UFO unit tests run under the Nose unit test running harness, requiring the python-nose package to be installed. These unit tests run fast enough that we could even consider running them on a commit hook run by rfc.sh. Note that they are not functional tests, as they don't require a real Gluster file system to run. Change-Id: I55972890c24be16fc588a6950cb6bfd539287bbe Signed-off-by: Peter Portante Reviewed-on: http://review.gluster.org/4333 Reviewed-by: Kaleb KEITHLEY Reviewed-by: Anand Avati Tested-by: Anand Avati --- ufo/unittests.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 ufo/unittests.sh (limited to 'ufo/unittests.sh') diff --git a/ufo/unittests.sh b/ufo/unittests.sh new file mode 100755 index 00000000000..a02be77966f --- /dev/null +++ b/ufo/unittests.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +cd $(dirname $0)/test/unit +nosetests --exe --with-coverage --cover-package gluster --cover-erase $@ +saved_status=$? +rm -f .coverage +exit $saved_status -- cgit