b15b8d3b0770adee4a624f3f0fcbdc6e349ccafe
[platform/upstream/grpc.git] / tools / run_tests / sanity / check_submodules.sh
1 #!/bin/sh
2
3 # Copyright 2015 gRPC authors.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17
18 set -e
19
20 export TEST=true
21
22 cd "$(dirname "$0")/../../.."
23
24 submodules=$(mktemp /tmp/submXXXXXX)
25 want_submodules=$(mktemp /tmp/submXXXXXX)
26
27 git submodule | awk '{ print $1 }' | sort > "$submodules"
28 cat << EOF | awk '{ print $1 }' | sort > "$want_submodules"
29  cc4bed2d74f7c8717e31f9579214ab52a9c9c610 third_party/abseil-cpp (cc4bed2)
30  e776aa0275e293707b6a0901e0e8d8a8a3679508 third_party/benchmark (v1.2.0)
31  73594cde8c9a52a102c4341c244c833aa61b9c06 third_party/bloaty (remotes/origin/wide-14-g73594cd)
32  b29b21a81b32ec273f118f589f46d56ad3332420 third_party/boringssl (remotes/origin/chromium-stable)
33  afc30d43eef92979b05776ec0963c9cede5fb80f third_party/boringssl-with-bazel (fips-20180716-116-gafc30d43e)
34  e982924acee7f7313b4baa4ee5ec000c5e373c30 third_party/cares/cares (cares-1_15_0)
35  911001cdca003337bdb93fab32740cde61bafee3 third_party/data-plane-api (heads/master)
36  28f50e0fed19872e0fd50dd23ce2ee8cd759338e third_party/gflags (v2.2.0-5-g30dbc81)
37  80ed4d0bbf65d57cc267dfc63bd2584557f11f9b third_party/googleapis (common-protos-1_3_1-915-g80ed4d0bb)
38  ec44c6c1675c25b9827aacd08c02433cccde7780 third_party/googletest (release-1.8.0)
39  6599cac0965be8e5a835ab7a5684bbef033d5ad0 third_party/libcxx (heads/release_60)
40  9245d481eb3e890f708ff2d7dadf2a10c04748ba third_party/libcxxabi (heads/release_60)
41  582743bf40c5d3639a70f98f183914a2c0cd0680 third_party/protobuf (v3.7.0-rc.2-20-g582743bf)
42  e143189bf6f37b3957fb31743df6a1bcf4a8c685 third_party/protoc-gen-validate (v0.0.10)
43  fa88c6017ddb490aa78c57bea682193f533ed69a third_party/upb (heads/master)
44  cacf7f1d4e3d44d871b605da3b647f07d718623f third_party/zlib (v1.2.11)
45 EOF
46
47 diff -u "$submodules" "$want_submodules"
48
49 rm "$submodules" "$want_submodules"