-
Notifications
You must be signed in to change notification settings - Fork 818
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
Fix uri_signing unit test for out of source builds #8040
Merged
bneradt
merged 1 commit into
apache:master
from
bneradt:fix_uri_signing_unit_test_out_of_source
Jul 6, 2021
Merged
Fix uri_signing unit test for out of source builds #8040
bneradt
merged 1 commit into
apache:master
from
bneradt:fix_uri_signing_unit_test_out_of_source
Jul 6, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The URI signing plugin unit test accesses a config file in the source directory. This works fine for in-source builds, but did not for out of source. This updates the Makefile and unit test so that the file is accessible for out of source builds.
This is a build fix for a unit test and is therefore safe for all branches. And since this fixes out of source builds, we should port this to all our supported branches for users who want or require out of source builds. |
randall
approved these changes
Jul 5, 2021
zwoop
pushed a commit
that referenced
this pull request
Jul 13, 2021
The URI signing plugin unit test accesses a config file in the source directory. This works fine for in-source builds, but did not for out of source. This updates the Makefile and unit test so that the file is accessible for out of source builds. (cherry picked from commit 8fb685b)
zwoop
pushed a commit
that referenced
this pull request
Jul 13, 2021
The URI signing plugin unit test accesses a config file in the source directory. This works fine for in-source builds, but did not for out of source. This updates the Makefile and unit test so that the file is accessible for out of source builds. (cherry picked from commit 8fb685b)
Cherry-picked to v9.0.x branch. |
moonchen
pushed a commit
to moonchen/trafficserver
that referenced
this pull request
Mar 7, 2022
* asf/master: (763 commits) rate_limit: Add a global hook to rate limit concurrent connections based on SNI (apache#8021) Fix uri_signing unit test for out of source builds (apache#8040) tests: Add conditions for BoringSSL and OpenSSL (apache#8045) change debug tags and make sure sni is printed on certain logs (apache#7673) Doc build in CI: build English docs with -W (apache#8039) When loading async SSL configuration file fails, log SSL error (apache#8036) Doc build: treat warnings as errors only by default (apache#8038) For test async_engine, export all symbols (apache#8037) Fix the server cert reload (apache#8030) Treat Sphinx doc build warnings as errors. (apache#8033) Stablize trace curl test in good_request_after_bad (apache#8032) Doc: Update documentation to build cleanly in Sphinx 3. Require Sphinx 3 or better. (apache#7978) Docs: Fix pre-formatting for ratelimit plugin (apache#7986) Make it slightly harder to dump private keys to logs (apache#8029) tls_bad_alpn: Add an openssl version skip check (apache#8026) per thread jemalloc arena for MADV_DONTDUMP (apache#7501) Adds a new rm-destination, this lets you specify either QUERY or PATH, and be able to drop them from the incoming request (apache#8025) Fix HPACK eviction iterator manipulation (apache#8004) Do not invalidate cached resources upon error responses to unsafe methods (apache#7999) Cleanup SSLUtils (apache#8007) ...
moonchen
pushed a commit
to moonchen/trafficserver
that referenced
this pull request
Jul 26, 2022
The URI signing plugin unit test accesses a config file in the source directory. This works fine for in-source builds, but did not for out of source. This updates the Makefile and unit test so that the file is accessible for out of source builds. (cherry picked from commit 8fb685b) (cherry picked from commit 8899b9f)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The URI signing plugin unit test accesses a config file in the source
directory. This works fine for in-source builds, but did not for out of
source. This updates the Makefile and unit test so that the file is
accessible for out of source builds.