We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23b15de commit 0120118Copy full SHA for 0120118
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 < 311MB with minimal JDK and > 315MB with an all
+# Bazel's install base is < 320MB with minimal JDK and > 320MB with an all
46
# modules JDK.
47
-function test_size_less_than_311MB() {
+function test_size_less_than_320MB() {
48
bazel info
49
ib=$(bazel info install_base)
50
size=$(du -s "$ib" | cut -d\ -f1)
51
- maxsize=$((1024*311))
+ maxsize=$((1024*320))
52
if [ $size -gt $maxsize ]; then
53
echo "$ib was too big:" 1>&2
54
du -a "$ib" 1>&2
0 commit comments