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
Do not ignore non-zero error code from 'make minitest'
In pipelines like:
$ sh ./Configure -des -Dusedevel && \
make minitest && make test_harness
... we don't want to run 'make test_harness' unless 'make minitest' has
succeeded.
To test:
$ echo "exit(1);" >> t/base/cond.t
$ make minitest && echo "hello world"
# [note that minitest fails quickly and 'echo' is not reached]
$ git checkout -- t/base/cond.t
$ make minitest && echo "hello world"
# [note that minitest runs and 'echo' is reached]
For: #16160
Originally: https://rt-archive.perl.org/perl5/Ticket/Display.html?id=132139
0 commit comments