1SKIP_REGULAR_EXPRESSION 2----------------------- 3 4.. versionadded:: 3.16 5 6If the output matches this regular expression the test will be marked as skipped. 7 8If set, if the output matches one of specified regular expressions, 9the test will be marked as skipped. Example: 10 11.. code-block:: cmake 12 13 set_property(TEST mytest PROPERTY 14 SKIP_REGULAR_EXPRESSION "[^a-z]Skip" "SKIP" "Skipped" 15 ) 16 17``SKIP_REGULAR_EXPRESSION`` expects a list of regular expressions. 18 19See also the :prop_test:`SKIP_RETURN_CODE`, 20:prop_test:`PASS_REGULAR_EXPRESSION`, and :prop_test:`FAIL_REGULAR_EXPRESSION` 21test properties. 22