Increase the number of references/threads to be tested under Windows by default to detect errors

This commit is contained in:
Ralf Habacker 2018-12-14 10:54:31 +01:00
parent 95171f4f1a
commit 48538357c6

View file

@ -220,8 +220,9 @@ setup (Fixture *f,
* Do fewer iterations: enough to demonstrate that it works,
* rather than seriously trying to reproduce race conditions.
*/
f->n_threads = 10;
f->n_refs = 10;
f->n_threads = 100;
f->n_refs = 1000;
g_info ("reducing number of threads/refs to %d/%d", f->n_threads, f->n_refs);
}
#endif
f->loop = _dbus_loop_new ();