diff options
Diffstat (limited to 'libcxx/utils')
10 files changed, 0 insertions, 11 deletions
diff --git a/libcxx/utils/docker/debian9/Dockerfile.base b/libcxx/utils/docker/debian9/Dockerfile.base index 56c93f963d2..6ad85fdb275 100644 --- a/libcxx/utils/docker/debian9/Dockerfile.base +++ b/libcxx/utils/docker/debian9/Dockerfile.base @@ -43,4 +43,3 @@ RUN apt-get update && \ update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20 && \ update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.bfd" 10 && \ rm -rf /var/lib/apt/lists/* - diff --git a/libcxx/utils/docker/debian9/Dockerfile.compiler_zoo b/libcxx/utils/docker/debian9/Dockerfile.compiler_zoo index b3572211907..640d24ae561 100644 --- a/libcxx/utils/docker/debian9/Dockerfile.compiler_zoo +++ b/libcxx/utils/docker/debian9/Dockerfile.compiler_zoo @@ -31,5 +31,3 @@ COPY --from=ericwf/compilers:latest /opt/llvm-6.0 /opt/llvm-6.0 COPY --from=ericwf/compilers:latest /opt/llvm-7.0 /opt/llvm-7.0 COPY --from=ericwf/compilers:latest /opt/llvm-8.0 /opt/llvm-8.0 COPY --from=ericwf/compilers_tot:latest /opt/llvm-tot /opt/llvm-tot - - diff --git a/libcxx/utils/docker/scripts/run_buildbot.sh b/libcxx/utils/docker/scripts/run_buildbot.sh index 1305bb21321..ce86e10e5a7 100755 --- a/libcxx/utils/docker/scripts/run_buildbot.sh +++ b/libcxx/utils/docker/scripts/run_buildbot.sh @@ -100,4 +100,3 @@ done sleep 72000 while pkill -SIGHUP buildslave; do sleep 5; done; shutdown now - diff --git a/libcxx/utils/google-benchmark/.clang-format b/libcxx/utils/google-benchmark/.clang-format index 4b3f13fa55e..06ea346a106 100644 --- a/libcxx/utils/google-benchmark/.clang-format +++ b/libcxx/utils/google-benchmark/.clang-format @@ -2,4 +2,3 @@ Language: Cpp BasedOnStyle: Google ... - diff --git a/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp b/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp index b5b91cdab7c..105189f02ee 100644 --- a/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp +++ b/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp @@ -9,4 +9,3 @@ int main() { } return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0; } - diff --git a/libcxx/utils/google-benchmark/cmake/posix_regex.cpp b/libcxx/utils/google-benchmark/cmake/posix_regex.cpp index 466dc62560a..02f6dfc278a 100644 --- a/libcxx/utils/google-benchmark/cmake/posix_regex.cpp +++ b/libcxx/utils/google-benchmark/cmake/posix_regex.cpp @@ -11,4 +11,3 @@ int main() { regfree(&re); return ret; } - diff --git a/libcxx/utils/google-benchmark/cmake/std_regex.cpp b/libcxx/utils/google-benchmark/cmake/std_regex.cpp index 696f2a26bce..8177c482e83 100644 --- a/libcxx/utils/google-benchmark/cmake/std_regex.cpp +++ b/libcxx/utils/google-benchmark/cmake/std_regex.cpp @@ -7,4 +7,3 @@ int main() { std::regex_constants::extended | std::regex_constants::nosubs); return std::regex_search(str, re) ? 0 : -1; } - diff --git a/libcxx/utils/google-benchmark/docs/AssemblyTests.md b/libcxx/utils/google-benchmark/docs/AssemblyTests.md index 1fbdc269b53..0d06f50ac65 100644 --- a/libcxx/utils/google-benchmark/docs/AssemblyTests.md +++ b/libcxx/utils/google-benchmark/docs/AssemblyTests.md @@ -144,4 +144,3 @@ tests to other architectures and compilers (using `CHECK` prefixes). Furthermore, the tests fail for builds which specify additional flags that modify code generation, including `--coverage` or `-fsanitize=`. - diff --git a/libcxx/utils/google-benchmark/test/AssemblyTests.cmake b/libcxx/utils/google-benchmark/test/AssemblyTests.cmake index 3d078586f1d..8605221ff71 100644 --- a/libcxx/utils/google-benchmark/test/AssemblyTests.cmake +++ b/libcxx/utils/google-benchmark/test/AssemblyTests.cmake @@ -43,4 +43,3 @@ macro(add_filecheck_test name) WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) endforeach() endmacro() - diff --git a/libcxx/utils/libcxx/test/googlebenchmark.py b/libcxx/utils/libcxx/test/googlebenchmark.py index e531cba0b36..d6960a7bca7 100644 --- a/libcxx/utils/libcxx/test/googlebenchmark.py +++ b/libcxx/utils/libcxx/test/googlebenchmark.py @@ -119,4 +119,3 @@ class GoogleBenchmark(TestFormat): return lit.Test.UNRESOLVED, msg return lit.Test.PASS, err + out - |