You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I didn't want to make this part of #172 since it's broader. Currently:
the github workflow runs cargo build but then each test case in tests/ also does that; the latter are redundant
with that in mind, the building of the C test helpers in the test dir should be done once by the workflow probably
we may want a toplevel build.sh script that does all of that for us, for convenience when developing
we want test cases to test the output format of sonar ps better. right now there's some ad-hoccery around some of the fields, we should test more fields, in particular timestamp (cf Regression: Timestamp format is wrong #173, currently an internal test only)
(more ideas here)
The text was updated successfully, but these errors were encountered:
The various cargo build runs are less redundant than it may seem, since some build enable various feature sets, and if we're not going to build for every test then the runs that do change the features need to be very careful to restore the original binary on all exit paths.
I didn't want to make this part of #172 since it's broader. Currently:
cargo build
but then each test case in tests/ also does that; the latter are redundantsonar ps
better. right now there's some ad-hoccery around some of the fields, we should test more fields, in particular timestamp (cf Regression: Timestamp format is wrong #173, currently an internal test only)The text was updated successfully, but these errors were encountered: