We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f963870 commit 951a302Copy full SHA for 951a302
src/test/shell/integration/minimal_jdk_test.sh
@@ -42,13 +42,13 @@ export BAZEL_SUFFIX="_jdk_minimal"
42
source "$(rlocation "io_bazel/src/test/shell/integration_test_setup.sh")" \
43
|| { echo "integration_test_setup.sh not found!" >&2; exit 1; }
44
45
-# Bazel's install base is < 295MB with minimal JDK and > 300MB with an all
+# Bazel's install base is < 300MB with minimal JDK and > 305MB with an all
46
# modules JDK.
47
-function test_size_less_than_295MB() {
+function test_size_less_than_300MB() {
48
bazel info
49
ib=$(bazel info install_base)
50
size=$(du -s "$ib" | cut -d\ -f1)
51
- maxsize=$((1024*295))
+ maxsize=$((1024*300))
52
if [ $size -gt $maxsize ]; then
53
echo "$ib was too big:" 1>&2
54
du -a "$ib" 1>&2
0 commit comments