-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-38077: [C++] Output bundled GoogleTest to ${BUILD_DIR}/${CONFIG} #38132
Conversation
@github-actions crossbow submit java-jars |
|
This comment was marked as outdated.
This comment was marked as outdated.
@github-actions crossbow submit java-jars |
This comment was marked as outdated.
This comment was marked as outdated.
@github-actions crossbow submit java-jars |
Revision: 859ecc9 Submitted crossbow builds: ursacomputing/crossbow @ actions-97d56254dd
|
To find bundled GoogleTest DLLs, we need to set PATH or output GoogleTest DLLs to the same directory of test executables. The latter is used.
+1 |
After merging your PR, Conbench analyzed the 6 benchmarking runs that have been run so far on merge-commit d602d40. There were no benchmark performance regressions. 🎉 The full Conbench report has more details. It also includes information about 4 possible false positives for unstable benchmarks that are known to sometimes produce them. |
…FIG} (apache#38132) ### Rationale for this change To find DLLs on Windows, we need to add a directory of these DLLs to PATH or put these DLLs to the same directory of the target .exe. ### What changes are included in this PR? Output bundled GoogleTest's DLLs to the same directory of the test .exe. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: apache#38077 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…FIG} (apache#38132) ### Rationale for this change To find DLLs on Windows, we need to add a directory of these DLLs to PATH or put these DLLs to the same directory of the target .exe. ### What changes are included in this PR? Output bundled GoogleTest's DLLs to the same directory of the test .exe. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: apache#38077 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
…FIG} (apache#38132) ### Rationale for this change To find DLLs on Windows, we need to add a directory of these DLLs to PATH or put these DLLs to the same directory of the target .exe. ### What changes are included in this PR? Output bundled GoogleTest's DLLs to the same directory of the test .exe. ### Are these changes tested? Yes. ### Are there any user-facing changes? No. * Closes: apache#38077 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
Rationale for this change
To find DLLs on Windows, we need to add a directory of these DLLs to PATH or put these DLLs to the same directory of the target .exe.
What changes are included in this PR?
Output bundled GoogleTest's DLLs to the same directory of the test .exe.
Are these changes tested?
Yes.
Are there any user-facing changes?
No.