1#!/bin/bash
2#
3# Copyright 2020, Google Inc.
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met:
9#
10#     * Redistributions of source code must retain the above copyright
11# notice, this list of conditions and the following disclaimer.
12#     * Redistributions in binary form must reproduce the above
13# copyright notice, this list of conditions and the following disclaimer
14# in the documentation and/or other materials provided with the
15# distribution.
16#     * Neither the name of Google Inc. nor the names of its
17# contributors may be used to endorse or promote products derived from
18# this software without specific prior written permission.
19#
20# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31
32set -euox pipefail
33
34readonly LINUX_LATEST_CONTAINER="gcr.io/google.com/absl-177019/linux_hybrid-latest:20220217"
35readonly LINUX_GCC_FLOOR_CONTAINER="gcr.io/google.com/absl-177019/linux_gcc-floor:20220621"
36
37if [[ -z ${GTEST_ROOT:-} ]]; then
38  GTEST_ROOT="$(realpath $(dirname ${0})/..)"
39fi
40
41if [[ -z ${STD:-} ]]; then
42  STD="c++14 c++17 c++20"
43fi
44
45# Test the CMake build
46for cc in /usr/local/bin/gcc /opt/llvm/clang/bin/clang; do
47  for cmake_off_on in OFF ON; do
48    time docker run \
49      --volume="${GTEST_ROOT}:/src:ro" \
50      --tmpfs="/build:exec" \
51      --workdir="/build" \
52      --rm \
53      --env="CC=${cc}" \
54      --env="CXX_FLAGS=\"-Werror -Wdeprecated\"" \
55      ${LINUX_LATEST_CONTAINER} \
56      /bin/bash -c "
57        cmake /src \
58          -DCMAKE_CXX_STANDARD=14 \
59          -Dgtest_build_samples=ON \
60          -Dgtest_build_tests=ON \
61          -Dgmock_build_tests=ON \
62          -Dcxx_no_exception=${cmake_off_on} \
63          -Dcxx_no_rtti=${cmake_off_on} && \
64        make -j$(nproc) && \
65        ctest -j$(nproc) --output-on-failure"
66  done
67done
68
69# Do one test with an older version of GCC
70time docker run \
71  --volume="${GTEST_ROOT}:/src:ro" \
72  --workdir="/src" \
73  --rm \
74  --env="CC=/usr/local/bin/gcc" \
75  --env="BAZEL_CXXOPTS=-std=c++14" \
76  ${LINUX_GCC_FLOOR_CONTAINER} \
77    /usr/local/bin/bazel test ... \
78      --copt="-Wall" \
79      --copt="-Werror" \
80      --copt="-Wuninitialized" \
81      --copt="-Wno-error=pragmas" \
82      --distdir="/bazel-distdir" \
83      --features=external_include_paths \
84      --keep_going \
85      --show_timestamps \
86      --test_output=errors
87
88# Test GCC
89for std in ${STD}; do
90  for absl in 0 1; do
91    time docker run \
92      --volume="${GTEST_ROOT}:/src:ro" \
93      --workdir="/src" \
94      --rm \
95      --env="CC=/usr/local/bin/gcc" \
96      --env="BAZEL_CXXOPTS=-std=${std}" \
97      ${LINUX_LATEST_CONTAINER} \
98      /usr/local/bin/bazel test ... \
99        --copt="-Wall" \
100        --copt="-Werror" \
101        --copt="-Wuninitialized" \
102        --define="absl=${absl}" \
103        --distdir="/bazel-distdir" \
104        --features=external_include_paths \
105        --keep_going \
106        --show_timestamps \
107        --test_output=errors
108  done
109done
110
111# Test Clang
112for std in ${STD}; do
113  for absl in 0 1; do
114    time docker run \
115      --volume="${GTEST_ROOT}:/src:ro" \
116      --workdir="/src" \
117      --rm \
118      --env="CC=/opt/llvm/clang/bin/clang" \
119      --env="BAZEL_CXXOPTS=-std=${std}" \
120      ${LINUX_LATEST_CONTAINER} \
121      /usr/local/bin/bazel test ... \
122        --copt="--gcc-toolchain=/usr/local" \
123        --copt="-Wall" \
124        --copt="-Werror" \
125        --copt="-Wuninitialized" \
126        --define="absl=${absl}" \
127        --distdir="/bazel-distdir" \
128        --features=external_include_paths \
129        --keep_going \
130        --linkopt="--gcc-toolchain=/usr/local" \
131        --show_timestamps \
132        --test_output=errors
133  done
134done
135