blob: c0066fcc35083c21f13a315fb61e3e43793c6ad2 [file] [log] [blame]
Sergio Giro3b067c72016-06-23 16:33:31 +01001#!/bin/bash
2
3
4# Copyright (C) 2016 The Android Open Source Project
5#
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17
18
19##### Script to check whether the files openjdk_java_files.mk match
20##### those in the corresponding directory.
21COMMAND='diff <(for i in $(openjdk_java_files); do echo "\$$i"; done | sort) '
22COMMAND=${COMMAND}'<( find ojluni/src/main/java -type f | grep '\''\.java$$'\'' | sort )'
23
24# Need to do it this nasty way (creating a Makefile on the fly and
25# executing the bash command inside it) as to read the openjdk_java_files
26# variable from an .mk file.
27make -s -f <(cat <<EOF
28include openjdk_java_files.mk
29check_openjdk_java_files: ; /bin/bash -c "$COMMAND"
30EOF)
31
32if [ $? -eq 0 ]; then
33 echo 'No differences found'
34else
35 echo 'Differences found'
36 exit 1
37fi
38