Restores passing additional parameters to nosetest

Parameters after -- are only passed to testr and not to nosetest.
The patch restores the old behaviour.

Change-Id: Ia25b0c071f7292a5ddf34f057b19d03f879dc0af
This commit is contained in:
Sunil Thaha 2013-10-10 13:49:19 +10:00
parent 86ab2385c7
commit ee332b090b
1 changed files with 1 additions and 1 deletions

View File

@ -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