1FAIL_REGULAR_EXPRESSION
2-----------------------
3
4If the output matches this regular expression the test will fail,
5regardless of the process exit code.
6
7If set, if the output matches one of specified regular expressions,
8the test will fail.  Example:
9
10.. code-block:: cmake
11
12  set_tests_properties(mytest PROPERTIES
13    FAIL_REGULAR_EXPRESSION "[^a-z]Error;ERROR;Failed"
14  )
15
16``FAIL_REGULAR_EXPRESSION`` expects a list of regular expressions.
17
18See also the :prop_test:`PASS_REGULAR_EXPRESSION` and
19:prop_test:`SKIP_REGULAR_EXPRESSION` test properties.
20