Hi Mike,

What are the C and ! characters in the left most column?
>

Always good to add a legend, eh? It's this snippet that computes the
prefixes:

              (defValue != value ? "! " : computedValue ? "C " : "  "),

In short, "C" stands for a "computed" value. This means the value is
randomly computed from the provided (or random) tests.seed. This applies to
properties we can't modify in LuceneTestCase - like tests.file.encoding you
asked about (which can be declared at VM startup only). This is ok, since
we do want to "simulate" those odd locales and encodings.

The "!" next to a property means you have it locally overridden (either via
command line property or in gradle.properties). In your case, it's this
one, for example:


> ! tests.jvms               = 12       # (!= default: computed) Number of
> forked test JVMs
>

Dawid

Reply via email to