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.
This is a demo implementation of what a minimal Alire test runner could look like, following the proposed design in #1831.
For now, it only takes two arguments: a
-j[obs=]N
arg that specifies how many tests should be run in parallel (defaults to 0, aka how many cores your machine has) and--dir=<dir>
, specifying which sub-directory holds your tests (defaults totests
).To test it:
Have a repository with a
tests
folder containing a binary crate. In the GPR file, replace theMain
setting withand at the top, add
Each
.adb
file insrc/
should contain a single main procedure. You can add extra source directories (likecommon
...), they will not be considered test folders, and you can put extra test code in there, to be used from the actual test procedures.A test fails when its exit code is not zero (for instance, from an unhandled exception).
Finally, simply run
alr test2
with the alr from this branch.