I have a makefile for a scripting system with a lot of tests that must pass. Each test is a separate scripting application call:
scripted_tests: bin/kin modules/test/actor_equality.kin modules/test/actor_fibre.kin ...
bin/kin modules/test/actor_equality.kin
bin/kin modules/test/actor_fibre.kin
...
This is normal. I also have some similar tests that should return failure. I know that I -will ignore the return status, but there must be something simple to invert the return status so that I can run
inverse_tests: bin/kin modules/test/error/bad_function.kin ...
not bin/kin modules/test/error/bad_function.kin
...
source
share