+BAIL_OUT () {
+ test $# -ne 1 && BUG "1 param"
+
+ # Do not change "Bail out! " string. It's part of TAP syntax:
+ # https://testanything.org/tap-specification.html
+ local bail_out="Bail out! "
+ local message="$1"
+
+ say_color error $bail_out "$message"
+ _error_exit
+}
This looks like a good addition that can be used in similar cases
later. I'd assume that "Bail out!" early of a test sequence will
mark the test suite as a failure as a whole, but I wonder if there
is a similar "early abort" mechanism that would cause a success? In
some tests we do
if .. some condition ..
then
test_done ;# because we cannot test the remainder
fi
.. more tests ...
and I've always thought the "done" an ugly hack.
But that has nothing to do with the value of this change.
Thanks.
On Thu, Oct 14 2021, Junio C Hamano wrote:
quoted
+BAIL_OUT () {
+ test $# -ne 1 && BUG "1 param"
+
+ # Do not change "Bail out! " string. It's part of TAP syntax:
+ # https://testanything.org/tap-specification.html
+ local bail_out="Bail out! "
+ local message="$1"
+
+ say_color error $bail_out "$message"
+ _error_exit
+}
This looks like a good addition that can be used in similar cases
later. I'd assume that "Bail out!" early of a test sequence will
mark the test suite as a failure as a whole, but I wonder if there
is a similar "early abort" mechanism that would cause a success? In
some tests we do
if .. some condition ..
then
test_done ;# because we cannot test the remainder
fi
.. more tests ...
and I've always thought the "done" an ugly hack.
But that has nothing to do with the value of this change.
Thanks.
That's:
skip_all="reason"
test_done
Which we could spell as:
skip_all "reason"
Or whatever, if we wanted such a self-documenting helper.
There's no facility in TAP syntax to indicate in some special way that
you'd like to skip all remaining things once your test is already
running, the best you can do is just exit at that point.
I.e. the (very light amount of) special-ness (such as it is) is that if
the very first line of the output is "1..0 skip [...]" progarms like
"prove" will emit the skip summary as part of the output. See DIRECTIVES
at https://testanything.org/tap-specification.html