1#!/usr/bin/env sh 2# Copyright 2022 Code Intelligence GmbH 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15 16[ -f "$1" ] || exit 1 17# List all files in the jar and exclude an allowed list of files. 18# Since grep fails if there is no match, ! ... | grep ... fails if there is a 19# match. 20! external/local_jdk/bin/jar tf "$1" | \ 21 grep -v \ 22 -e '^com/$' \ 23 -e '^com/code_intelligence/$' \ 24 -e '^com/code_intelligence/jazzer/$' \ 25 -e '^com/code_intelligence/jazzer/junit/' \ 26 -e '^com/code_intelligence/jazzer/sanitizers/$' \ 27 -e '^com/code_intelligence/jazzer/sanitizers/Constants.class$' \ 28 -e '^META-INF/$' \ 29 -e '^META-INF/MANIFEST.MF$' \ 30 -e '^META-INF/services/$' \ 31 -e '^META-INF/services/org.junit.platform.engine.TestEngine$' 32