Add undefined/no-undefined mode options to GTester

https://bugzilla.gnome.org/show_bug.cgi?id=666116
This commit is contained in:
Simon McVittie
2011-12-14 17:31:23 +00:00
committed by Matthias Clasen
parent fa4792c35e
commit 993de34a77
4 changed files with 76 additions and 2 deletions

View File

@@ -70,7 +70,38 @@ list paths of available test cases
<varlistentry>
<term><option>-m=<replaceable>MODE</replaceable></option></term>
<listitem><para>
run test cases in <replaceable>MODE</replaceable>, which can be perf, slow, thorough or quick. The default mode is quick.
run test cases in <replaceable>MODE</replaceable>, which can be one of:
<variablelist>
<term><option>perf</option></term>
<listitem><para>
run performance tests
</para></listitem>
<term><option>slow</option>, <option>thorough</option></term>
<listitem><para>
run slow tests, or repeat non-deterministic tests more often
</para></listitem>
<term><option>quick</option></term>
<listitem><para>
do not run slow or performance tests, or do extra repeats
of non-deterministic tests (default)
</para></listitem>
<term><option>undefined</option></term>
<listitem><para>
run test cases that deliberately provoke checks or assertion
failures, if implemented (default)
</para></listitem>
<term><option>no-undefined</option></term>
<listitem><para>
do not run test cases that deliberately provoke checks or
assertion failures
</para></listitem>
</variablelist>
</para></listitem>
</varlistentry>