blob: 4de710c651e7576520fb42779161a77e6bf8f539 [file] [log] [blame]
#!/bin/bash -e
if [ -f "gerrit/BUILD" ]
then
cd gerrit
export BAZEL_OPTS="--ignore_unsupported_sandboxing --test_output errors \
--test_summary detailed --flaky_test_attempts 3 \
--test_verbose_timeout_warnings --build_tests_only"
echo 'Test in default DB mode'
echo '----------------------------------------------'
bazel test $BAZEL_OPTS //...
echo 'Test in Note DB mode'
echo '----------------------------------------------'
GERRIT_ENABLE_NOTEDB=TRUE bazel test $BAZEL_OPTS //...
fi
exit 0