Test: Regression test for Pulse fn extraction with .fsti interface#574
Merged
Test: Regression test for Pulse fn extraction with .fsti interface#574
Conversation
Adds a minimal test case that verifies Pulse fn declarations in .fsti interface files are correctly extracted to C via KaRaMeL. Previously, such functions were silently dropped due to the interleaver not recognizing DeclToBeDesugared as an interface declaration (fixed in FStarC.ToSyntax.Interleave.fst). The test defines: - pure_add: a pure function (control — always worked) - pulse_read_ref: a Pulse fn reading a ref (was dropped, now extracted) Both must appear in the generated .c file. The .c.expected file is checked against actual KaRaMeL output by mk/test.mk's automatic diff mechanism. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
dbeb478 to
09b73ec
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.
Adds a minimal test case that verifies Pulse fn declarations in .fsti interface files are correctly extracted to C via KaRaMeL. Previously, such functions were silently dropped due to the interleaver not recognizing DeclToBeDesugared as an interface declaration (fixed in FStarC.ToSyntax.Interleave.fst).
The test defines:
Both must appear in the generated .c file.
The .c.expected file is checked against actual KaRaMeL output by mk/test.mk's automatic diff mechanism.
NS: Yes, this indeed fails without the F* PR FStarLang/FStar#4110