This patchset fixes the problem in HP L2GW CI where timeout errors were reported. Patchset also ensures that all the tests run in sequential order. Change-Id: I977b52ba87112b3d5b7aefee408bd3d14c632fec Closes-bug: 1517758stable/ocata
parent
4ec821f4af
commit
4f5b96e84c
@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -o pipefail
|
||||
|
||||
TESTRARGS=$@
|
||||
|
||||
if [ ! -d .testrepository ]; then
|
||||
testr init
|
||||
fi
|
||||
testr run --subunit $TESTRARGS | subunit-trace -f -n
|
||||
retval=$?
|
||||
testr slowest
|
||||
|
||||
exit $retval
|
Loading…
Reference in new issue