test: cmx native deps under release profile#14583
Open
robinbb wants to merge 1 commit into
Open
Conversation
2da7f8c to
25dbbc0
Compare
25dbbc0 to
2b03c21
Compare
There was a problem hiding this comment.
Pull request overview
Adds a blackbox regression test for native .cmx dependency handling when building a local unwrapped library consumer under the release profile.
Changes:
- Adds a new cram test creating
dep_libandconsumer. - Builds
consumer.cmxawith--profile releaseto exercise native compilation.
Regression guard asserting that a consumer of a tight-eligible local library builds correctly when forced through the native `.cmx` path via `--profile release`. The default `dev` profile sets `opaque = true`, which makes `want_cmx = false` for local libs and the cmx branch is skipped entirely. Switching to `release` flips `opaque` off, so the consumer's native compile takes the per-module path with `cm_kind = Ocaml Cmx` and the function records cmx-file deps. Signed-off-by: Robin Bate Boerop <me@robinbb.com>
2b03c21 to
805a104
Compare
This file contains hidden or 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
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.
Regression guard asserting that a consumer of a tight-eligible local library builds correctly when forced through the native
.cmxpath via--profile release.The default
devprofile setsopaque = true, which makeswant_cmx = falsefor local libs and the cmx branch is skipped entirely. Switching toreleaseflipsopaqueoff, so the consumer's native compile takes the per-module path withcm_kind = Ocaml Cmxand the function records cmx-file deps.