
With the Icehouse release of openstack-swift functional case classified as fucntionalnose tests have been moved to functional cases.Although we copied test suites from test/fucntionalnose/ to test/functional/ but we still have same cases under test/functionalnose.This might cause duplicate tests run. Change-Id: I025206467aad364debd9050b3186e1379d89ffaf Signed-off-by: Pushpesh Sharma psharma@redhat.com Reviewed-on: http://review.gluster.org/7516 Reviewed-by: Prashanth Pai ppai@redhat.com Tested-by: Prashanth Pai ppai@redhat.com Reviewed-by: Chetan Risbud crisbud@redhat.com Reviewed-by: Thiago da Silva thiago@redhat.com
11 lines
124 B
Bash
Executable File
11 lines
124 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SRC_DIR=$(dirname $0)
|
|
|
|
cd ${SRC_DIR}/test/functional
|
|
nosetests --exe $@
|
|
func1=$?
|
|
cd -
|
|
|
|
exit $((func1 + func2))
|