Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUpdate makefile to use examples harness #30
Merged
Conversation
This was referenced Jan 12, 2020
Merged
…ests.
The Makefile's default target has been updated so that it now requires
that the 'system' level tests build. This is one of 3 new targets that
have been added:
- test_level_unittests, which should cause the unit tests to run.
We don't have any yet, but some will be added shortly.
- test_level_integration, which causes the integration tests to run.
These are the tests in the 'tests' directory, which exercise the
external interface in a test-like environment to see that it
functions as desired.
This level is dependant on the unittests passing before it will
be run.
- test_level_system, which causes the examples to be run.
These examples are the sorts of programs that a user might write,
and which we expect to be invoked from the command and to do
their job.
This level is dependant on the integration tests passing before
it will be run.
In CI, the individual test targets (rather than the levels) would
probably be invoked, with each one still dependant on the earlier ones
in stages (or maybe just run them all in parallel, as they're all very
fast).
|
Hmm. Looks like I created this branch wrongly. It's god the python2 bits in it, but shouldn't have. |
13dd4c5
to
da4bb4f
|
I think this is right now; makefile runs the mutator examples:
|
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.
gerph commentedJan 12, 2020
•
edited
The Makefile's default target has been updated so that it now requires
that the 'system' level tests build. This is one of 3 new targets that
have been added:
test_level_unittests, which should cause the unit tests to run.
We don't have any yet, but some will be added shortly.
test_level_integration, which causes the integration tests to run.
These are the tests in the 'tests' directory, which exercise the
external interface in a test-like environment to see that it
functions as desired.
This level is dependant on the unittests passing before it will
be run.
test_level_system, which causes the examples to be run.
These examples are the sorts of programs that a user might write,
and which we expect to be invoked from the command and to do
their job.
This level is dependant on the integration tests passing before
it will be run.
In CI, the individual test targets (rather than the levels) would
probably be invoked, with each one still dependant on the earlier ones
in stages (or maybe just run them all in parallel, as they're all very
fast).