From cfff73917d13d5629fc6d247921e4db46fb841c8 Mon Sep 17 00:00:00 2001 From: kmb Date: Tue, 20 Feb 2018 15:30:22 -0800 Subject: Tool that scans a given Jar for references to select classes and outputs corresponding Proguard-style -keep rules RELNOTES: None. PiperOrigin-RevId: 186372769 GitOrigin-RevId: c1042f2adc55d040495a1159100146fad607d32a Change-Id: I8c3509e9d48145cc90faa143016c3f2cb0d23c27 --- .../android/desugar/scan/test_keep_scanner.sh | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 test/java/com/google/devtools/build/android/desugar/scan/test_keep_scanner.sh (limited to 'test/java/com/google/devtools/build/android/desugar/scan/test_keep_scanner.sh') diff --git a/test/java/com/google/devtools/build/android/desugar/scan/test_keep_scanner.sh b/test/java/com/google/devtools/build/android/desugar/scan/test_keep_scanner.sh new file mode 100755 index 0000000..d42859f --- /dev/null +++ b/test/java/com/google/devtools/build/android/desugar/scan/test_keep_scanner.sh @@ -0,0 +1,27 @@ +#!/bin/bash +# +# Copyright 2018 The Bazel Authors. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +set -eux + +out=$(mktemp) +"$1" --input "$2" --keep_file "${out}" --prefix java/ + +if ! diff "$3" "${out}"; then + echo "Unexpected output" + cat "${out}" + rm "${out}" + exit 1 +fi +rm "${out}" -- cgit v1.2.3