tests/compose: Fix run-test.sh regression

Regression from hasty hack in #1488. We want to return nonzero if the
test failed so that `parallel` fails too.

Closes: #1491
Approved by: cgwalters
This commit is contained in:
Jonathan Lebon 2018-08-07 10:46:46 -04:00 committed by Atomic Bot
parent e94f8c9b5f
commit 391a684b5f

View File

@ -15,3 +15,4 @@ if [ $rc == 0 ]; then
else
mv ${TEST_ARTIFACTS}{,.fail.$rc}
fi
[ $rc == 0 ]