summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorSean Dague <sdague@linux.vnet.ibm.com>2013-03-22 16:07:01 -0400
committerSean Dague <sdague@linux.vnet.ibm.com>2013-03-23 08:19:14 -0400
commit91b9c208f0c6e21759c7828aa42b3216853be425 (patch)
tree1b23d2613b198f47c2d341f027ae1e309db1c535 /run_tests.sh
parenta92b7c8f9281cb2dcf8eb6d6a7c466a463719352 (diff)
downloadnova-91b9c208f0c6e21759c7828aa42b3216853be425.tar.gz
disable colorizer as it swallows fails
while the colorizer is pretty, it has the problem that fail output actually gets completely swallowed when it is turned on. Revert the use in run_tests.sh for now until it can be sorted out so we don't prevent people from using run_tests.sh to do development. Fixes bug #1159116 Change-Id: I3e6dfdc03c7b033ff132c00a51a368dae9789266
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.sh b/run_tests.sh
index 4d02fe5706..29e723c7fb 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -129,7 +129,7 @@ function run_tests {
if [ $coverage -eq 1 ]; then
TESTRTESTS="$TESTRTESTS --coverage"
else
- TESTRTESTS="$TESTRTESTS"
+ TESTRTESTS="$TESTRTESTS --slowest"
fi
# Just run the test suites in current environment
@@ -137,7 +137,7 @@ function run_tests {
testrargs=`echo "$testrargs" | sed -e's/^\s*\(.*\)\s*$/\1/'`
TESTRTESTS="$TESTRTESTS --testr-args='--subunit $testropts $testrargs'"
echo "Running \`${wrapper} $TESTRTESTS\`"
- bash -c "${wrapper} $TESTRTESTS | ${wrapper} tools/colorizer.py"
+ bash -c "${wrapper} $TESTRTESTS | ${wrapper} subunit2pyunit"
RESULT=$?
set -e