-
Notifications
You must be signed in to change notification settings - Fork 1
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
Allow designation of output filenames #20
Comments
This alone is not sufficient because a test suite will generally have a bunch of different files being tested. What about generalizing the
Where |
What is meant by "name" precisely? Is the name the path? Is it the |
Usually |
So |
Just want to clarify this before I implement |
That sounds about right. I recommend you test thi with actual |
Sorry, I just got the notification for this. I'll get on it likely Wednesday. |
It would be nice if within a
runt.toml
there was an option to designate an output filename different than the basename of the input file.As an example
Something like this
Would output to a file called
output.futil
instead offile1.expect
. The thought is that this might be able to assist in testing multiple steps in a compilation cycle generated from a single source file, as opposed to needing duplicate source files for each step.For example we could have multiple tests starting from
file1.futil
.The first test would check the first step against
output.futil
The second test would run the first step then check the output of the second step against
output2.futil
and so on.The text was updated successfully, but these errors were encountered: