CinRC / IRDC-CCSK

Java implementation of distributed reversible computation verification
https://spots.augusta.edu/caubert/cinrc/
GNU General Public License v3.0
4 stars 2 forks source link

Speed-up test running #36

Closed aubertc closed 1 year ago

aubertc commented 1 year ago

As of now, my workflow to edit a particular test (say, SimulationTest) & run it is:

But, unfortunately, this last command re-build everything. Is there any way to skip the "build everything" part, and to "just" run the test? There seems to be some way with mvn surefire:test, but I could not make it work.

aubertc commented 1 year ago

Ok, one can use mvn surefire:test -Dtest="SimulationTest" but it does not recompile the test, so if it was edited the changes are ignored.

mvn -Dtest="SimulationTest" test is probably the sweet spot I was looking for…