Skip to content
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

phy: use structured output formatting #118

Merged
merged 10 commits into from
Mar 4, 2025

Conversation

zerbina
Copy link
Collaborator

@zerbina zerbina commented Mar 3, 2025

Summary

  • show program result value and its type as S-expression (easier to
    process)
  • support positional output specs (e.g., output.0: ...) in test
    specification
  • separate program output from phy output when in runner mode

Details

  • return an S-expression-based representation of the result (value and
    type) from vmexec.run. It matches how the value would be represented
    in the source language definition
  • when in runner mode, separate the program output (i.e., text written
    to the output and error stream) from the value + type, so that both
    count as separate fragments for the tester and can be compared
    independently
  • support positional output specs in test specification to make it
    possible to provide the expected string for leading fragments
    directly, without the need to use .expected files
  • update the expr tests' output specifications

The output is now much easier to parse programmatically.


Notes For Reviewers

  • a preparation for the source language specification tests

zerbina added 6 commits March 3, 2025 21:55
Instead of rendering the result value to a string, render it to an
S-expression (`SexpNode`), making it easier to work with for follow-up
processing.

The S-expressions representation is meant to mirror how the values are
represented in the language specification.
Meant to be used for the `phy` output.
Both the type and value are shown in their S-expression representation.
This'll make output comparison for the new source language test
approach easier.
Both the program output and `phy` output (i.e., the result value +
type) were written to the output stream without any separator. To be
able to compare both against an expected string, when running `phy` in
runner mode, their now separate by the `"!BREAK!"` string, which the
tester understands.
The tester supports the runner supplying multiple output fragments, but
their expected content could previously not be provided through just
the test specification. With the new positional output specification,
this is now possible.
@zerbina zerbina added the enhancement New feature or request label Mar 3, 2025
@zerbina zerbina requested a review from saem March 3, 2025 22:38
Copy link
Contributor

@saem saem left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two minor things you might wish to consider, but LGTM

@zerbina zerbina changed the title phy: use more structured output phy: use structured output formatting Mar 4, 2025
@zerbina zerbina merged commit edb5251 into nim-works:main Mar 4, 2025
6 checks passed
@zerbina zerbina deleted the structured-phy-output branch March 4, 2025 22:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants