Merge "Restores passing additional parameters to nosetest"

This commit is contained in:
Jenkins 2013-10-15 13:09:35 +00:00 committed by Gerrit Code Review
commit b8b3501efe

@ -63,7 +63,7 @@ while [ $# -gt 0 ]; do
-l|--logging) logging=1;;
-L|--logging-config) logging_config=$2; shift;;
--) [ "yes" == "$first_uu" ] || testrargs="$testrargs $1"; first_uu=no ;;
*) testrargs="$testrargs $1"
*) testrargs="$testrargs $1"; noseargs+=" $1" ;;
esac
shift
done