Disable bootstrap test for Java 7

--
MOS_MIGRATED_REVID=140051684
diff --git a/src/test/shell/bazel/bazel_bootstrap_distfile_test.sh b/src/test/shell/bazel/bazel_bootstrap_distfile_test.sh
index ade7d1a..8692273 100755
--- a/src/test/shell/bazel/bazel_bootstrap_distfile_test.sh
+++ b/src/test/shell/bazel/bazel_bootstrap_distfile_test.sh
@@ -21,6 +21,11 @@
 DISTFILE=$(readlink $1)
 shift 1
 
+if [ "${JAVA_VERSION:-}" == "1.7" ] ; then
+  echo "Warning: bootstrapping not tested for java 1.7"
+  exit 0
+fi
+
 # Load the test setup defined in the parent directory
 CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
 source "${CURRENT_DIR}/../integration_test_setup.sh" \