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