-- c2e2e2b21c3fe59b63279e7418c93c7289ee3e27 by Mark Barolak <mbar@google.com>: Import of CCTZ from GitHub. PiperOrigin-RevId: 256220326 -- 3996b01f0c3eb60f72825b154dce8019b6215f1d by Derek Mauro <dmauro@google.com>: Add GCC 4.9 test script. This will become our new minumum version and GCC 4.8 will be removed soon. PiperOrigin-RevId: 256160891 -- 2c13aa44bc8e497ebae9abe8b8adf73c2152622d by Abseil Team <absl-team@google.com>: [Trivial] tweak flat_hash_map.h doc comment The comment is probably right both ways, but the lack of an "if" here seemed jarring to me. PiperOrigin-RevId: 256089069 -- 16bc03b9b30fbf08d7dc61025fa8ec4b57077be8 by Abseil Team <absl-team@google.com>: Fix symbolization for elf files whose SYMTAB section is stripped, but have a DYNSYM section. Previously, if we did not find a SYMTAB section, we would bail out of symbolization early, rather than checking the DYNSYM section. PiperOrigin-RevId: 256061954 -- 4c60ee329b1eeb0b0d10c4f76f282e5fbae2c5b2 by Derek Mauro <dmauro@google.com>: Update to LLVM r363242 and Bazel 0.27.0 PiperOrigin-RevId: 256024405 -- 18e1ba970d33f122026803d8ca90035b9088949d by Eric Fiselier <ericwf@google.com>: Disable variant tests that break with P0608R3 PiperOrigin-RevId: 255975764 -- 0a89858464977e86096b62476faa3b64eb94aa1d by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 255891019 -- 9b7424cac66f5407f0ed74ed288bf3099a4fa330 by CJ Johnson <johnsoncj@google.com>: Updates the implementation of InlinedVector::insert(...) to be exception safe and adds an exception safety tests for insert(...) PiperOrigin-RevId: 255881809 -- 1288f4ba3883c510d92b09437fb8b051c19aa241 by CJ Johnson <johnsoncj@google.com>: Updates the implementation of InlinedVector::insert(...) to be exception safe and adds an exception safety tests for insert(...) PiperOrigin-RevId: 255875277 -- 39c04f3621491eaff9e2eda619718d5b5f20fbd9 by Abseil Team <absl-team@google.com>: Use a typedef to allow building with NVCC Without this change NVCC fails to compile compressed_tuple.h. NVCC is relevant because TensorFlow uses NVCC on Ubuntu and inclues abseil. PiperOrigin-RevId: 255850176 -- e23f0309ccad69eb508ca02c9034cd4cdd740da0 by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 255787167 -- 054aafcebf595077054164f1da3703124ab209b4 by Abseil Team <absl-team@google.com>: Updates the ScopedAllocatorWorks test for InlinedVector to not rely on the byte count allocated by the standard library In doing so, removes LegacyNextCapacityFrom(...) impl function from InlinedVector Also applies clang-format to the test file PiperOrigin-RevId: 255760356 -- eb05fc9f78e3a163c93f1866e9fe9a8ad0d01622 by Abseil Team <absl-team@google.com>: Internal change PiperOrigin-RevId: 255706834 -- 97abb824417604c45d9fcbb3e4ff1aa3000836f2 by Jorg Brown <jorg@google.com>: Enhance compatibility of abseil's strings package with nvcc. PiperOrigin-RevId: 255688500 -- efc5b9c221ee31e15d10b35d31c8f3ae6eddaa8c by Abseil Team <absl-team@google.com>: Follow CCTZ's lead and allow GetWeekday() and GetYearDay() to be called with any civil-time type. A CivilSecond, for example, has a weekday just as much as a CivilDay does. PiperOrigin-RevId: 255659840 -- a75acbe954457919d8c6c8f4c2339b543760b375 by Derek Mauro <dmauro@google.com>: Increase the timeout of randen_engine_test. It seems to timeout under TSAN often enough to justify the increase. PiperOrigin-RevId: 255628086 -- 160976ba47c7c6eb57af08e21f8eb640aa51e91b by Derek Mauro <dmauro@google.com>: Update CMake documentation Fixes https://github.com/abseil/abseil-cpp/issues/332 PiperOrigin-RevId: 255607313 GitOrigin-RevId: c2e2e2b21c3fe59b63279e7418c93c7289ee3e27 Change-Id: Iba4ac7ed23cbcdb22965b4958601f689be92cda4pull/340/head
parent
c964fcffac
commit
e6b050212c
27 changed files with 284 additions and 159 deletions
@ -0,0 +1,75 @@ |
||||
#!/bin/bash |
||||
# |
||||
# Copyright 2019 The Abseil Authors. |
||||
# |
||||
# 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 |
||||
# |
||||
# https://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. |
||||
|
||||
# This script that can be invoked to test abseil-cpp in a hermetic environment |
||||
# using a Docker image on Linux. You must have Docker installed to use this |
||||
# script. |
||||
|
||||
set -euox pipefail |
||||
|
||||
if [ -z ${ABSEIL_ROOT:-} ]; then |
||||
ABSEIL_ROOT="$(realpath $(dirname ${0})/..)" |
||||
fi |
||||
|
||||
if [ -z ${STD:-} ]; then |
||||
STD="c++11 c++14" |
||||
fi |
||||
|
||||
if [ -z ${COMPILATION_MODE:-} ]; then |
||||
COMPILATION_MODE="fastbuild opt" |
||||
fi |
||||
|
||||
readonly DOCKER_CONTAINER="gcr.io/google.com/absl-177019/linux_gcc-4.9:20190702" |
||||
|
||||
# USE_BAZEL_CACHE=1 only works on Kokoro. |
||||
# Without access to the credentials this won't work. |
||||
if [ ${USE_BAZEL_CACHE:-0} -ne 0 ]; then |
||||
DOCKER_EXTRA_ARGS="--volume=${KOKORO_KEYSTORE_DIR}:/keystore:ro ${DOCKER_EXTRA_ARGS:-}" |
||||
# Bazel doesn't track changes to tools outside of the workspace |
||||
# (e.g. /usr/bin/gcc), so by appending the docker container to the |
||||
# remote_http_cache url, we make changes to the container part of |
||||
# the cache key. Hashing the key is to make it shorter and url-safe. |
||||
container_key=$(echo ${DOCKER_CONTAINER} | sha256sum | head -c 16) |
||||
BAZEL_EXTRA_ARGS="--remote_http_cache=https://storage.googleapis.com/absl-bazel-remote-cache/${container_key} --google_credentials=/keystore/73103_absl-bazel-remote-cache ${BAZEL_EXTRA_ARGS:-}" |
||||
fi |
||||
|
||||
for std in ${STD}; do |
||||
for compilation_mode in ${COMPILATION_MODE}; do |
||||
echo "--------------------------------------------------------------------" |
||||
echo "Testing with --compilation_mode=${compilation_mode} and --std=${std}" |
||||
|
||||
time docker run \ |
||||
--volume="${ABSEIL_ROOT}:/abseil-cpp:ro" \ |
||||
--workdir=/abseil-cpp \ |
||||
--cap-add=SYS_PTRACE \ |
||||
--rm \ |
||||
-e CC="/usr/bin/gcc-4.9" \ |
||||
-e BAZEL_CXXOPTS="-std=${std}" \ |
||||
${DOCKER_EXTRA_ARGS:-} \ |
||||
${DOCKER_CONTAINER} \ |
||||
/usr/local/bin/bazel test ... \ |
||||
--compilation_mode=${compilation_mode} \ |
||||
--copt=-Werror \ |
||||
--define="absl=1" \ |
||||
--keep_going \ |
||||
--show_timestamps \ |
||||
--test_env="GTEST_INSTALL_FAILURE_SIGNAL_HANDLER=1" \ |
||||
--test_env="TZDIR=/abseil-cpp/absl/time/internal/cctz/testdata/zoneinfo" \ |
||||
--test_output=errors \ |
||||
--test_tag_filters=-benchmark \ |
||||
${BAZEL_EXTRA_ARGS:-} |
||||
done |
||||
done |
Loading…
Reference in new issue