1PASS_REGULAR_EXPRESSION 2----------------------- 3 4The output must match this regular expression for the test to pass. 5The process exit code is ignored. 6 7If set, the test output will be checked against the specified regular 8expressions and at least one of the regular expressions has to match, 9otherwise the test will fail. Example: 10 11.. code-block:: cmake 12 13 set_tests_properties(mytest PROPERTIES 14 PASS_REGULAR_EXPRESSION "TestPassed;All ok" 15 ) 16 17``PASS_REGULAR_EXPRESSION`` expects a list of regular expressions. 18 19See also the :prop_test:`FAIL_REGULAR_EXPRESSION` and 20:prop_test:`SKIP_REGULAR_EXPRESSION` test properties. 21