65a03e55cd
Move the tests from functionalnosetests under functional, so we no longer have two seperate trees for functional tests. This also drops the 'nose' name from the directory, so that it doesn't end up with confusion if we move to testr. Further, since there are no longer two test runs in .functests, it nows looks very close to the other two. Change-Id: I8de025c29d71f05072e257df24899927b82c1382
11 lines
172 B
Bash
Executable File
11 lines
172 B
Bash
Executable File
#!/bin/bash
|
|
|
|
SRC_DIR=$(python -c "import os; print os.path.dirname(os.path.realpath('$0'))")
|
|
|
|
cd ${SRC_DIR}/test/functional
|
|
nosetests --exe $@
|
|
rvalue=$?
|
|
cd -
|
|
|
|
exit $rvalue
|