Skip to content

Commit 19bcbbd

Browse files
committed
Merge
2 parents c4910f7 + bc750f7 commit 19bcbbd

File tree

1,638 files changed

+30952
-23699
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,638 files changed

+30952
-23699
lines changed

.github/actions/get-gtest/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
2+
# Copyright (c) 2022, 2023, Oracle and/or its affiliates. All rights reserved.
33
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
#
55
# This code is free software; you can redistribute it and/or modify it
@@ -43,7 +43,7 @@ runs:
4343
uses: actions/checkout@v3
4444
with:
4545
repository: google/googletest
46-
ref: 'release-${{ steps.version.outputs.value }}'
46+
ref: 'v${{ steps.version.outputs.value }}'
4747
path: gtest
4848

4949
- name: 'Export path to where GTest is installed'

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ jobs:
235235
uses: ./.github/workflows/build-macos.yml
236236
with:
237237
platform: macos-x64
238-
xcode-toolset-version: '11.7'
238+
xcode-toolset-version: '12.5.1'
239239
configure-arguments: ${{ github.event.inputs.configure-arguments }}
240240
make-arguments: ${{ github.event.inputs.make-arguments }}
241241
if: needs.select.outputs.macos-x64 == 'true'
@@ -246,7 +246,7 @@ jobs:
246246
uses: ./.github/workflows/build-macos.yml
247247
with:
248248
platform: macos-aarch64
249-
xcode-toolset-version: '12.4'
249+
xcode-toolset-version: '12.5.1'
250250
extra-conf-options: '--openjdk-target=aarch64-apple-darwin'
251251
configure-arguments: ${{ github.event.inputs.configure-arguments }}
252252
make-arguments: ${{ github.event.inputs.make-arguments }}

doc/building.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1094,14 +1094,14 @@ <h2 id="running-tests">Running Tests</h2>
10941094
<p>Building of Hotspot Gtest suite requires the source code of Google
10951095
Test framework. The top directory, which contains both
10961096
<code>googletest</code> and <code>googlemock</code> directories, should
1097-
be specified via <code>--with-gtest</code>. The supported version of
1098-
Google Test is 1.8.1, whose source code can be obtained:</p>
1097+
be specified via <code>--with-gtest</code>. The minimum supported
1098+
version of Google Test is 1.13.0, whose source code can be obtained:</p>
10991099
<ul>
11001100
<li>by downloading and unpacking the source bundle from <a
1101-
href="https://github.com/google/googletest/releases/tag/release-1.8.1">here</a></li>
1102-
<li>or by checking out <code>release-1.8.1</code> tag of
1101+
href="https://github.com/google/googletest/releases/tag/v1.13.0">here</a></li>
1102+
<li>or by checking out <code>v1.13.0</code> tag of
11031103
<code>googletest</code> project:
1104-
<code>git clone -b release-1.8.1 https://github.com/google/googletest</code></li>
1104+
<code>git clone -b v1.13.0 https://github.com/google/googletest</code></li>
11051105
</ul>
11061106
<p>To execute the most basic tests (tier 1), use:</p>
11071107
<pre><code>make run-test-tier1</code></pre>

doc/building.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -864,13 +864,14 @@ https://ci.adoptopenjdk.net/view/Dependencies/job/dependency_pipeline/lastSucces
864864
Download the latest `.tar.gz` file, unpack it, and point `--with-jtreg` to the
865865
`jtreg` directory that you just unpacked.
866866
867-
Building of Hotspot Gtest suite requires the source code of Google Test framework.
868-
The top directory, which contains both `googletest` and `googlemock`
869-
directories, should be specified via `--with-gtest`.
870-
The supported version of Google Test is 1.8.1, whose source code can be obtained:
871-
872-
* by downloading and unpacking the source bundle from [here](https://github.com/google/googletest/releases/tag/release-1.8.1)
873-
* or by checking out `release-1.8.1` tag of `googletest` project: `git clone -b release-1.8.1 https://github.com/google/googletest`
867+
Building of Hotspot Gtest suite requires the source code of Google
868+
Test framework. The top directory, which contains both `googletest`
869+
and `googlemock` directories, should be specified via `--with-gtest`.
870+
The minimum supported version of Google Test is 1.13.0, whose source
871+
code can be obtained:
872+
873+
* by downloading and unpacking the source bundle from [here](https://github.com/google/googletest/releases/tag/v1.13.0)
874+
* or by checking out `v1.13.0` tag of `googletest` project: `git clone -b v1.13.0 https://github.com/google/googletest`
874875
875876
To execute the most basic tests (tier 1), use:
876877
```

make/autoconf/basic_tools.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ AC_DEFUN([BASIC_CHECK_TAR],
286286
if test "x$TAR_TYPE" = "xgnu"; then
287287
TAR_INCLUDE_PARAM="T"
288288
TAR_SUPPORTS_TRANSFORM="true"
289-
elif test "x$TAR_TYPE" = "aix"; then
289+
elif test "x$TAR_TYPE" = "xaix"; then
290290
# -L InputList of aix tar: name of file listing the files and directories
291291
# that need to be archived or extracted
292292
TAR_INCLUDE_PARAM="L"

0 commit comments

Comments
 (0)