OpenStack Storage (Swift)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash |
|
|
|
cd test/functional |
|
nosetests --exe $@ |
|
func1=$? |
|
cd - |
|
|
|
cd test/functionalnosetests |
|
nosetests --exe $@ |
|
func2=$? |
|
cd - |
|
|
|
exit $((func1 + func2))
|
|
|