summaryrefslogtreecommitdiff
path: root/.functests
diff options
context:
space:
mode:
authorTim Burke <tim.burke@gmail.com>2021-03-25 13:06:24 -0700
committerTim Burke <tim.burke@gmail.com>2021-03-26 10:13:19 -0700
commitf819fc8c24937bc54cf2eefb51b1a4bf343a7034 (patch)
treef67f61eeea9ed28ec8e97e386c7bcabb20faad78 /.functests
parent8cc1ef92558bd3f7c345c955f386498b936bace1 (diff)
downloadswift-f819fc8c24937bc54cf2eefb51b1a4bf343a7034.tar.gz
Give functional tests another chance to pass
In the process, move from using os-testr to stestr. Change-Id: Ib6651aab8b009605bf0855ec217003936c0fae6e
Diffstat (limited to '.functests')
-rwxr-xr-x.functests4
1 files changed, 2 insertions, 2 deletions
diff --git a/.functests b/.functests
index 82638240b..3d1af25b7 100755
--- a/.functests
+++ b/.functests
@@ -7,8 +7,8 @@ SRC_DIR=$(dirname $(realpath "$0"))
cd ${SRC_DIR} > /dev/null
export TESTS_DIR=${SRC_DIR}/test/functional
-ARGS="--concurrency 1 ${@:-"--pretty"}"
-ostestr $ARGS
+ARGS="run --concurrency 1 $@"
+stestr $ARGS || stestr run --concurrency 1 --failing
rvalue=$?
cd - > /dev/null