We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d9fd9 commit b5500d1Copy full SHA for b5500d1
t/README
@@ -231,6 +231,18 @@ This test harness library does the following things:
231
consistently when command line arguments --verbose (or -v),
232
--debug (or -d), and --immediate (or -i) is given.
233
234
+Skipping tests
235
+--------------
236
+
237
+If you need to skip all the remaining tests you should set skip_all
238
+and immediately call test_done. The string you give to skip_all will
239
+be used as an explanation for why the test was skipped. for instance:
240
241
+ if ! test_have_prereq PERL
242
+ then
243
+ skip_all='skipping perl interface tests, perl not available'
244
+ test_done
245
+ fi
246
247
End with test_done
248
------------------
0 commit comments