Allow to pass arguments to nosetest.

When running .functests or .unittests allow to pass argument on the
command line for nosetests.

Fixes bug 925636

Change-Id: Icb07c192328528900b502fbc937b9c83f70a4b0f
This commit is contained in:
Chmouel Boudjnah 2012-02-02 19:47:39 +01:00
parent 80a3cb556d
commit 5a145145ac
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
nosetests test/functional --exe
nosetests test/functionalnosetests --exe
nosetests test/functional --exe $@
nosetests test/functionalnosetests --exe $@

View File

@ -1,4 +1,4 @@
#!/bin/bash
nosetests test/unit --exe --with-coverage --cover-package swift --cover-erase
nosetests test/unit --exe --with-coverage --cover-package swift --cover-erase $@
rm -f .coverage